Пример #1
0
?>
</link>
        <description><?php 
echo strip_tags(\thebuggenie\core\framework\Settings::getSiteHeaderName());
?>
</description>
        <language><?php 
echo mb_strtolower(str_replace('_', '-', \thebuggenie\core\framework\Context::getI18n()->getCurrentLanguage()));
?>
</language>
        <image>
        <?php 
if (\thebuggenie\core\framework\Settings::isUsingCustomHeaderIcon() == '2') {
    ?>
            <url><?php 
    echo \thebuggenie\core\framework\Settings::getHeaderIconURL();
    ?>
</url>
        <?php 
} elseif (\thebuggenie\core\framework\Settings::isUsingCustomHeaderIcon() == '1') {
    ?>
            <url><?php 
    echo \thebuggenie\core\framework\Context::getUrlHost() . \thebuggenie\core\framework\Context::getWebroot() . 'header.png';
    ?>
</url>
        <?php 
} else {
    ?>
            <url><?php 
    echo image_url('logo_24.png', false, null, false);
    ?>
Пример #2
0
 public function runStatus(framework\Request $request)
 {
     $status_info = array('api_version' => $this->getApiVersion(), 'version' => framework\Settings::getVersion(), 'version_long' => framework\Settings::getVersion(true, true), 'site_name' => framework\Settings::getSiteHeaderName(), 'host' => framework\Settings::getURLhost(), 'urls' => array('site' => framework\Settings::getHeaderLink() == '' ? framework\Context::getWebroot() : framework\Settings::getHeaderLink(), 'logo' => framework\Settings::getHeaderIconURL(), 'icon' => framework\Settings::getFaviconURL()), 'online' => !(bool) framework\Settings::isMaintenanceModeEnabled());
     if (framework\Settings::hasMaintenanceMessage()) {
         $status_info['maintenance_msg'] = framework\Settings::getMaintenanceMessage();
     }
     $this->status_info = $status_info;
 }