Esempio n. 1
0
 public function onCCK_FieldPrepareStore(&$field, $value = '', &$config = array(), $inherit = array(), $return = false)
 {
     if (self::$type != $field->type) {
         return;
     }
     // Init
     if (count($inherit)) {
         $name = isset($inherit['name']) && $inherit['name'] != '' ? $inherit['name'] : $field->name;
     } else {
         $name = $field->name;
     }
     $dispatcher = JDispatcher::getInstance();
     // Prepare
     $store = '';
     $text = '';
     $xi = 0;
     if (count($value)) {
         $store = '<br />';
         foreach ($value as $key => $val) {
             $store .= '<br />::cck_' . $name . '::' . $field->extended . '::/cck_' . $name . '::';
             $text .= '- ' . $field->label . ' ' . $xi . ': <ul style="line-height:10px;">';
             $fields = self::_getChildren($field, $config);
             if (count($fields)) {
                 foreach ($fields as $f) {
                     $f->storage = $field->storage;
                     $f->storage_table = $field->storage_table;
                     $f->storage_field = $field->storage_field;
                     $f->state = '';
                     //todo;
                     $f_label = $f->label;
                     $f_name = $f->name;
                     $f_value = @$val[$f_name];
                     $inherit = array('xk' => $key, 'xi' => $xi, 'parent' => $name, 'array_x' => 1, 'post' => $val);
                     $results = $dispatcher->trigger('onCCK_FieldPrepareStore', array(&$f, $f_value, &$config, $inherit, true));
                     $v = $results[0];
                     $store .= '<br />::' . $f_name . '|' . $xi . '|' . $name . '::' . $v . '::/' . $f_name . '|' . $xi . '|' . $name . '::';
                     $text .= '<li style="line-height:10px;">' . $f_label . ' : ' . $v . '</li>';
                     // todo: add childs (secondary) storages.. not primary!
                 }
             }
             $store .= '<br />::cckend_' . $name . '::::/cckend_' . $name . '::';
             $text .= '</ul>';
             $xi++;
         }
         $store .= '<br />';
     }
     $value = $xi;
     $field->value = $value;
     $field->text = $text;
     parent::g_onCCK_FieldPrepareStore_X($field, $name, $value, $store, $config);
 }
Esempio n. 2
0
 public function onCCK_FieldPrepareStore(&$field, $value = '', &$config = array(), $inherit = array(), $return = false)
 {
     if (self::$type != $field->type) {
         return;
     }
     // Init
     if (count($inherit)) {
         $name = isset($inherit['name']) && $inherit['name'] != '' ? $inherit['name'] : $field->name;
     } else {
         $name = $field->name;
     }
     $value = isset($config['post'][$name . '_hidden']) ? $config['post'][$name . '_hidden'] : $value;
     $dispatcher = JDispatcher::getInstance();
     // Prepare
     $store = '';
     $xk = 0;
     $xi = 0;
     if (count($value)) {
         $store = '<br />';
         //begin?
         $f = self::_getChild($field, $config);
         $f_name = $f->name;
         $f->state = '';
         //todo;
         foreach ($value as $val) {
             //if ( $val != '' ) {
             $inherit = array('name' => $name, 'xk' => $xk, 'xi' => $xi, 'parent' => $name);
             $results = $dispatcher->trigger('onCCK_FieldPrepareStore', array(&$f, $val, &$config, $inherit, true));
             $v = $results[0];
             if ($v != '') {
                 $store .= '<br />::' . $f_name . '|' . $xi . '|' . $name . '::' . $v . '::/' . $f_name . '|' . $xi . '|' . $name . '::';
                 $xi++;
             }
             // todo: add childs (secondary) storages.. not primary!
             //}
             $xk++;
         }
         $store .= '<br />';
         //end?
     }
     $value = $xi;
     $field->value = $value;
     parent::g_onCCK_FieldPrepareStore_X($field, $name, $value, $store, $config);
 }