コード例 #1
0
ファイル: Module.php プロジェクト: fachriza/thelia
 /**
  * @return bool true if the module image has been deployed, false otherwise.
  */
 public function isModuleImageDeployed()
 {
     return ModuleImageQuery::create()->filterByModuleId($this->getId())->count() > 0;
 }
コード例 #2
0
ファイル: ModuleImage.php プロジェクト: margery/thelia
 /**
  * Get the Query instance for this object
  *
  * @return ModelCriteria
  */
 public function getQueryInstance()
 {
     return ModuleImageQuery::create();
 }