本文整理汇总了PHP中FileUtils::getPluginDirs方法的典型用法代码示例。如果您正苦于以下问题:PHP FileUtils::getPluginDirs方法的具体用法?PHP FileUtils::getPluginDirs怎么用?PHP FileUtils::getPluginDirs使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileUtils
的用法示例。
在下文中一共展示了FileUtils::getPluginDirs方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: execute
/**
* Displays the list of existing job queues.
*
* @param array $arguments (optional)
* @param array $options (optional)
*/
public function execute($arguments = array(), $options = array())
{
$project = ProjectConfiguration::getActive();
$this->root = $project->getRootDir();
$this->arguments = $arguments;
$this->dirs = array($this->root . "/web");
FileUtils::getPluginDirs($this->dirs, $this->root, "/web");
$this->logSection("\nXML Generating file list.. (this may take a while)\n" . "File type: " . $arguments["ext"] . " \n", null, null, "ERROR");
foreach ($this->dirs as $dir) {
FileUtils::scanDirs($dir, "js", $this->files, true);
}
$this->printResult();
$this->finalize();
}
示例2: readSchema
public static function readSchema($combined = true)
{
$schema = array();
$dirs = array(sfConfig::get("sf_root_dir"));
if ($combined) {
FileUtils::getPluginDirs($dirs);
}
foreach ($dirs as $dir) {
if (file_exists($dir . "/config/schema.yml")) {
$content = file_get_contents($dir . "/config/schema.yml");
$tmp = sfYaml::load($content);
unset($tmp["propel"]["_attributes"]);
$schema = array_merge($schema, $tmp["propel"]);
}
}
return array("propel" => $schema);
}