Exemplo n.º 1
0
 public function onCCK_FieldPrepareForm(&$field, $value = '', &$config = array(), $inherit = array(), $return = false)
 {
     if (self::$type != $field->type) {
         return;
     }
     self::$path = parent::g_getPath(self::$type . '/');
     parent::g_onCCK_FieldPrepareForm($field, $config);
     // Init
     if (count($inherit)) {
         $id = isset($inherit['id']) && $inherit['id'] != '' ? $inherit['id'] : $field->name;
         $name = isset($inherit['name']) && $inherit['name'] != '' ? $inherit['name'] : $field->name;
     } else {
         $id = $field->name;
         $name = $field->name;
     }
     $value = $value != '' ? $value : $field->defaultvalue;
     // Validate
     $validate = '';
     if ($config['doValidation'] > 1) {
         plgCCK_Field_ValidationRequired::onCCK_Field_ValidationPrepareForm($field, $id, $config);
         $validate = count($field->validate) ? ' validate[' . implode(',', $field->validate) . ']' : '';
     }
     // Prepare
     $options2 = JCckDev::fromJSON($field->options2);
     $opts = self::_getOptionsList($options2, $field, $config);
     $class = 'inputbox select' . $validate . ($field->css ? ' ' . $field->css : '');
     if ($value != '') {
         $class .= ' has-value';
     }
     $attr = 'class="' . $class . '"' . ($field->attributes ? ' ' . $field->attributes : '');
     $form = count($opts) ? JHtml::_('select.genericlist', $opts, $name, $attr, 'value', 'text', $value, $id) : '';
     // Set
     if (!$field->variation) {
         $field->form = $form;
         if ($field->script) {
             parent::g_addScriptDeclaration($field->script);
         }
     } else {
         parent::g_getDisplayVariation($field, $field->variation, $value, $value, $form, $id, $name, '<select', '', '', $config);
     }
     $field->value = $value;
     // Return
     if ($return === true) {
         return $field;
     }
 }
Exemplo n.º 2
0
 public function onCCK_FieldPrepareForm(&$field, $value = '', &$config = array(), $inherit = array(), $return = false)
 {
     if (self::$type != $field->type) {
         return;
     }
     self::$path = parent::g_getPath(self::$type . '/');
     parent::g_onCCK_FieldPrepareForm($field, $config);
     // Init
     if (count($inherit)) {
         $id = isset($inherit['id']) && $inherit['id'] != '' ? $inherit['id'] : $field->name;
         $name = isset($inherit['name']) && $inherit['name'] != '' ? $inherit['name'] : $field->name;
     } else {
         $id = $field->name;
         $name = $field->name;
     }
     $value = $value != '' ? $value : $field->defaultvalue;
     // Validate
     $validate = '';
     if ($config['doValidation'] > 1) {
         plgCCK_Field_ValidationRequired::onCCK_Field_ValidationPrepareForm($field, $id, $config);
         $validate = count($field->validate) ? ' validate[' . implode(',', $field->validate) . ']' : '';
     }
     // Prepare
     $options2 = JCckDev::fromJSON($field->options2);
     $opts = array();
     if (trim($field->selectlabel)) {
         if ($config['doTranslation']) {
             $field->selectlabel = JText::_('COM_CCK_' . str_replace(' ', '_', trim($field->selectlabel)));
         }
         $opts[] = JHtml::_('select.option', '', '- ' . $field->selectlabel . ' -', 'value', 'text');
     }
     if (isset($options2['first']) && $options2['first'] != '') {
         if (strpos($options2['first'], '=') !== false) {
             $opt = explode('=', $options2['first']);
             $opt[0] = trim($opt[0]);
             $opts[] = JHtml::_('select.option', $opt[1], JText::_('COM_CCK_' . str_replace(' ', '_', $opt[0])), 'value', 'text');
         } else {
             $opts[] = JHtml::_('select.option', $options2['first'], $options2['first'], 'value', 'text');
         }
     }
     $val = $options2['start'] ? $options2['start'] : 0;
     $step = $options2['step'] ? $options2['step'] : 0;
     $limit = $options2['end'] ? $options2['end'] : 0;
     $math = isset($options2['math']) ? $options2['math'] : NULL;
     $force = isset($options2['force_digits']) && $options2['force_digits'] ? $options2['force_digits'] : 0;
     if ($step && $val || $step && $limit || $step && $val && $limit) {
         while (69) {
             if ($force) {
                 $val = str_pad($val, $force, '0', STR_PAD_LEFT);
             }
             if ($math == 0 && $val <= $limit) {
                 $opts[] = JHtml::_('select.option', $val, $val, 'value', 'text');
                 $val = $val + $step;
             } elseif ($math == 1 && $val <= $limit) {
                 $opts[] = JHtml::_('select.option', $val, $val, 'value', 'text');
                 $val = $val * $step;
             } elseif ($math == 2 && $val >= $limit) {
                 $opts[] = JHtml::_('select.option', $val, $val, 'value', 'text');
                 $val = $val - $step;
             } elseif ($math == 3 && $val > $limit) {
                 $opts[] = JHtml::_('select.option', $val, $val, 'value', 'text');
                 $val = floor($val / $step);
             } else {
                 break;
             }
         }
     }
     if (isset($options2['last']) && $options2['last'] != '') {
         if (strpos($options2['last'], '=') !== false) {
             $opt = explode('=', $options2['last']);
             $opt[0] = trim($opt[0]);
             $opts[] = JHtml::_('select.option', $opt[1], JText::_('COM_CCK_' . str_replace(' ', '_', $opt[0])), 'value', 'text');
         } else {
             $opts[] = JHtml::_('select.option', $options2['last'], $options2['last'], 'value', 'text');
         }
     }
     $class = 'inputbox select' . $validate . ($field->css ? ' ' . $field->css : '');
     if ($value != '') {
         $class .= ' has-value';
     }
     $attr = 'class="' . $class . '"' . ($field->attributes ? ' ' . $field->attributes : '');
     $form = count($opts) ? JHtml::_('select.genericlist', $opts, $name, $attr, 'value', 'text', $value, $id) : '';
     // Set
     if (!$field->variation) {
         $field->form = $form;
         if ($field->script) {
             parent::g_addScriptDeclaration($field->script);
         }
     } else {
         parent::g_getDisplayVariation($field, $field->variation, $value, $value, $form, $id, $name, '<select', '', '', $config);
     }
     $field->value = $value;
     // Return
     if ($return === true) {
         return $field;
     }
 }