/**
  * {@inheritDoc}
  */
 public function getID()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getID', array());
     return parent::getID();
 }
コード例 #2
0
ファイル: Block.php プロジェクト: jkoudys/concrete5
 public function setCustomStyleSet(StyleSet $set)
 {
     $db = Loader::db();
     $c = $this->getBlockCollectionObject();
     $cvID = $c->getVersionID();
     $db->Replace('CollectionVersionBlockStyles', array('cID' => $this->getBlockCollectionID(), 'cvID' => $cvID, 'arHandle' => $this->getAreaHandle(), 'bID' => $this->bID, 'issID' => $set->getID()), array('cID', 'cvID', 'bID', 'arHandle'), true);
     $this->issID = $set->getID();
 }