本文整理汇总了PHP中Environment::home_page_running方法的典型用法代码示例。如果您正苦于以下问题:PHP Environment::home_page_running方法的具体用法?PHP Environment::home_page_running怎么用?PHP Environment::home_page_running使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Environment
的用法示例。
在下文中一共展示了Environment::home_page_running方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_full_description
public function get_full_description()
{
if (Environment::home_page_running()) {
return GeneralConfig::load()->get_site_description();
} else {
return strip_tags($this->description);
}
}
示例2: compute_running_module_name
public static function compute_running_module_name()
{
$path = substr(SCRIPT, strlen(DIR));
$path = trim($path, '/');
if (strpos($path, '/')) {
$module_name = explode('/', $path);
self::$running_module_name = $module_name[0];
self::$home_page_running = false;
} else {
self::$home_page_running = true;
$general_config = GeneralConfig::load();
$other_home_page = $general_config->get_other_home_page();
$module_home_page = $general_config->get_module_home_page();
if (empty($other_home_page) && !empty($module_home_page)) {
self::$running_module_name = $general_config->get_module_home_page();
} else {
self::$running_module_name = '';
}
}
}
示例3: AdminDisplayGraphicalEnvironment
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
###################################################*/
if (defined('PHPBOOST') !== true) {
exit;
}
$env = new AdminDisplayGraphicalEnvironment();
Environment::set_graphical_environment($env);
if (!defined('TITLE')) {
define('TITLE', $LANG['unknown']);
}
$module_id = Environment::get_running_module_name();
$section = '';
if (!Environment::home_page_running() && ModulesManager::is_module_installed($module_id)) {
$section = ModulesManager::get_module($module_id)->get_configuration()->get_name();
}
$env->set_page_title(TITLE, $section);
ob_start();