Exemplo n.º 1
0
 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();
 }
Exemplo n.º 2
0
 /**
  * (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();
 }
Exemplo n.º 3
0
 public function __toString()
 {
     $this->_config->type = $this->getType();
     return parent::__toString();
 }