Esempio n. 1
0
 function _getSourceRow()
 {
     $row_data = parent::_getSourceRow();
     if ($row_data) {
         $row_data['id'] = $row_data['name'];
     }
     return $row_data;
 }
Esempio n. 2
0
 function _getSourceRow()
 {
     $row_data = parent::_getSourceRow();
     if ($row_data) {
         $row_data['id'] = strip_tags($row_data['name']);
     }
     return $row_data;
 }
Esempio n. 3
0
 function _getSourceRow()
 {
     if ($posted_values = $this->_copier->returnSets($this->copier_name)) {
         return false;
     }
     $all_data = array();
     $n = 0;
     while ($all_data[++$n] = parent::_getSourceRow()) {
         //collect data
     }
     $result_data = $this->_translateDataForCopier($all_data);
     $this->_copier->addSets($this->copier_name, $result_data);
     return false;
 }