コード例 #1
0
ファイル: Registry.php プロジェクト: relyd/aidstream
 /**
  * @deprecated
  *
  * Checks if a file with given name is published against the local database.
  * @param String $filename	Name of file to check for published.
  * @return Boolen
  */
 public function isFilePublished($filename)
 {
     $model = new Model_RegistryPublishedData();
     $isPublished = $model->isFilePublished($filename);
     return $isPublished;
 }