25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

11 satır
573 B

  1. <?php
  2. if (!defined('IN_CB')) { die('You are not allowed to access to this page.'); }
  3. $default_value['thickness'] = 30;
  4. $thickness = intval(isset($_POST['thickness']) ? $_POST['thickness'] : $default_value['thickness']);
  5. registerImageKey('thickness', $thickness);
  6. ?>
  7. <tr>
  8. <td><label for="thickness">Thickness</label></td>
  9. <td><?php echo getInputTextHtml('thickness', $thickness, array('type' => 'number', 'min' => 20, 'max' => 90, 'step' => 5, 'required' => 'required')); ?></td>
  10. </tr>