示例#1
0
 public function __construct()
 {
     parent::__construct();
     $this->university = new \phpws2\Variable\CanopyString(null, 'university');
     $this->university->allowEmpty(false);
     $this->university->setLimit(100);
     $this->mascot = new \phpws2\Variable\CanopyString(null, 'mascot');
     $this->mascot->allowEmpty(false);
     $this->mascot->setLimit(100);
     $this->active = new \phpws2\Variable\Bool(true, 'active');
     $this->image = new \phpws2\Variable\File(null, 'image');
     $this->image->allowNull(true);
 }