コード例 #1
0
ファイル: Object.class.php プロジェクト: evilgeny/bob
 public function setAssortiment(array $data = NULL)
 {
     $this->_mapper->removeAssortiment($this);
     if (is_array($data)) {
         foreach ($data as $k) {
             $this->_mapper->setAssortiment($this, $k);
         }
     }
     return $this;
 }