コード例 #1
0
 public function toConfigString()
 {
     $data = array();
     if ($this->argument_value) {
         switch ($this->argument_format) {
             case 'string':
                 $data['value'] = c::renderString($this->argument_value);
                 break;
             case 'json':
                 if (is_object($this->argument_value)) {
                     $data['value'] = c::renderDictionary($this->argument_value);
                 } elseif (is_array($this->argument_value)) {
                     $data['value'] = c::renderArray($this->argument_value);
                 } elseif (is_null($this->argument_value)) {
                     // TODO: recheck all this. I bet we never reach this:
                     $data['value'] = 'null';
                 } elseif (is_bool($this->argument_value)) {
                     $data['value'] = c::renderBoolean($this->argument_value);
                 } else {
                     $data['value'] = $this->argument_value;
                 }
                 break;
             case 'expression':
                 $data['value'] = c::renderExpression($this->argument_value);
                 break;
         }
     }
     if ($this->sort_order) {
         $data['order'] = $this->sort_order;
     }
     if ($this->set_if) {
         $data['set_if'] = c::renderString($this->set_if);
     }
     if ((int) $this->sort_order !== 0) {
         $data['order'] = $this->sort_order;
     }
     if ($this->description) {
         $data['description'] = c::renderString($this->description);
     }
     if (array_keys($data) === array('value')) {
         return $data['value'];
     } else {
         return c::renderDictionary($data);
     }
 }
コード例 #2
0
 public function toConfigString()
 {
     $data = array();
     if ($this->argument_value) {
         switch ($this->argument_format) {
             case 'string':
                 $data['value'] = c::renderString($this->argument_value);
                 break;
             case 'json':
                 if (is_object($this->argument_value)) {
                     $data['value'] = c::renderDictionary($this->argument_value);
                 } elseif (is_array($this->argument_value)) {
                     $data['value'] = c::renderArray($this->argument_value);
                 } else {
                     die('Unhandled');
                 }
                 break;
             case 'expression':
                 $data['value'] = c::renderExpression($this->argument_value);
                 break;
         }
     }
     if ($this->sort_order) {
         $data['order'] = $this->sort_order;
     }
     if ($this->set_if) {
         $data['set_if'] = c::renderString($this->set_if);
     }
     if ((int) $this->sort_order !== 0) {
         $data['order'] = $this->sort_order;
     }
     if ($this->description) {
         $data['description'] = c::renderString($this->description);
     }
     return c::renderDictionary($data);
 }
コード例 #3
0
 public function toConfigString()
 {
     if (empty($this->arguments)) {
         return '';
     }
     $args = array();
     foreach ($this->arguments as $arg) {
         $args[$arg->argument_name] = $arg->toConfigString();
     }
     return c::renderKeyValue('arguments', c::renderDictionary($args));
 }
コード例 #4
0
 public function toConfigString()
 {
     return c::renderDictionary($this->value);
 }