本文整理汇总了PHP中Symphony::namespace方法的典型用法代码示例。如果您正苦于以下问题:PHP Symphony::namespace方法的具体用法?PHP Symphony::namespace怎么用?PHP Symphony::namespace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Symphony
的用法示例。
在下文中一共展示了Symphony::namespace方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getPageNamespace
/**
* Returns the page namespace based on the current URL.
* A few examples:
*
* /login
* /publish
* /blueprints/datasources
* [...]
* /extension/$extension_name/$page_name
*
* This method is especially useful in couple with the translation function.
*
* @see toolkit#__()
* @return string
* The page namespace, without any action string (e.g. "new", "saved") or
* any value that depends upon the single setup (e.g. the section handle in
* /publish/$handle)
*/
public static function getPageNamespace()
{
if (self::$namespace !== false) {
return self::$namespace;
}
$page = getCurrentPage();
if (!is_null($page)) {
$page = trim($page, '/');
}
if (substr($page, 0, 7) == 'publish') {
self::$namespace = '/publish';
} else {
if (empty($page) && isset($_REQUEST['mode'])) {
self::$namespace = '/login';
} else {
if (empty($page)) {
self::$namespace = null;
} else {
$bits = explode('/', $page);
if ($bits[0] == 'extension') {
self::$namespace = sprintf('/%s/%s/%s', $bits[0], $bits[1], $bits[2]);
} else {
self::$namespace = sprintf('/%s/%s', $bits[0], $bits[1]);
}
}
}
}
return self::$namespace;
}