Exemplo n.º 1
0
 public function get_full_description()
 {
     if (Environment::home_page_running()) {
         return GeneralConfig::load()->get_site_description();
     } else {
         return strip_tags($this->description);
     }
 }
Exemplo n.º 2
0
 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 = '';
         }
     }
 }
Exemplo n.º 3
0
 *
 * 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();