コード例 #1
0
ファイル: RzFormText.class.php プロジェクト: sofp/mycon
 public function __construct($name, $sheet)
 {
     parent::__construct($name, $sheet);
     $textform = $this->sheet['type-text'];
     $this->size = $textform['size'];
     $this->maxlength = $textform['maxlength'];
 }
コード例 #2
0
ファイル: RzFormAddress.class.php プロジェクト: sofp/mycon
 public function __construct($name, $sheet)
 {
     parent::__construct($name, $sheet);
     $name = $this->name;
     $this->name1 = $name . '-1';
     $this->name2 = $name . '-2';
     $this->name3 = $name . '-3';
 }
コード例 #3
0
ファイル: RzFormRadio.class.php プロジェクト: sofp/mycon
 public function __construct($name, $sheet)
 {
     parent::__construct($name, $sheet);
 }