You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
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>