function __construct($theme_section, $name, $row_data, $theme_section_data)
 {
     parent::__construct($name);
     $this->set_theme_section($theme_section);
     $this->theme_section_data = $theme_section_data;
     $this->row_data = $row_data;
 }
コード例 #2
0
 function get_as_array()
 {
     $data = parent::get_as_array();
     $data['kind'] = 'Cell';
     $data['width'] = $this->width;
     $data['cell_type'] = 'spacer';
     return $data;
 }