コード例 #1
0
ファイル: Filtersfeature.php プロジェクト: vgrish/dvelum
 public function __toString()
 {
     $this->_config->setXType('');
     $this->_config->setFType('filters');
     $this->_config->filters = "[\n\t" . Utils_String::addIndent(implode(",\n", array_values($this->_filters)), 2) . "\n]";
     return parent::__toString();
 }
コード例 #2
0
ファイル: Model.php プロジェクト: vgrish/dvelum
 /**
  * (non-PHPdoc)
  * @see Ext_Object::__toString()
  */
 public function __toString()
 {
     if (!empty($this->_fields) && $this->_config->isValidProperty('fields')) {
         $this->fields = '[' . implode(',', array_values($this->_fields)) . ']';
     }
     return parent::__toString();
 }
コード例 #3
0
ファイル: Filter.php プロジェクト: vgrish/dvelum
 public function __toString()
 {
     $this->_config->type = $this->getType();
     return parent::__toString();
 }