當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Modules::getModule方法代碼示例

本文整理匯總了PHP中Modules::getModule方法的典型用法代碼示例。如果您正苦於以下問題:PHP Modules::getModule方法的具體用法?PHP Modules::getModule怎麽用?PHP Modules::getModule使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Modules的用法示例。


在下文中一共展示了Modules::getModule方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

<?php

/**
 * Welcome page that lists the available mythweb sections
 *
 * @license     GPL
 *
 * @package     MythWeb
 *
 **/
// Default requested view
if (empty($_REQUEST['view_module']) || !Modules::getModule($_REQUEST['view_module'])) {
    $_REQUEST['view_module'] = 'tv';
}
// Not really much to do here but print the list of modules
require 'modules/_shared/tmpl/' . tmpl . '/welcome.php';
開發者ID:knowledgejunkie,項目名稱:mythweb,代碼行數:16,代碼來源:welcome.php

示例2: t

        echo t('Recommended Programs');
        ?>
</a>
                        &nbsp; | &nbsp;
						<?php 
    }
    ?>
                    <?php 
}
?>
                    <a href="status"><?php 
echo t('Backend Status');
?>
</a>
<?php 
if (Modules::getModule('backend_log')) {
    ?>
                    &nbsp; | &nbsp;
                    <a href="backend_log"><?php 
    echo t('Backend Logs');
    ?>
</a>
<?php 
}
?>
                </div></td>
        </tr>
        </table></td>

</tr>
</table>
開發者ID:antonyraj15411,項目名稱:mythweb,代碼行數:31,代碼來源:header.php

示例3: ini_set

 *
 * @package     MythWeb
 *
 **/
// Add a custom include path?
if (!empty($_SERVER['include_path']) && $_SERVER['include_path'] != '.') {
    ini_set('include_path', $_SERVER['include_path'] . PATH_SEPARATOR . ini_get('include_path'));
}
// Path to the MythTV bindings that are now installed by the MythTV package
ini_set('include_path', '/usr/local/share/mythtv/bindings/php/' . PATH_SEPARATOR . '/usr/share/mythtv/bindings/php/' . PATH_SEPARATOR . ini_get('include_path'));
// Init
require_once 'includes/init.php';
// Handle Feed requests
if ($Path[0] == 'rss' || $Path[0] == 'ical') {
    unset($Path[0]);
    $Path = array_values($Path);
}
// Standard module?  Pass along the
if (Modules::getModule($Path[0])) {
    // Add the current module directory to our search path, so modules can
    // define includes, etc.
    ini_set('include_path', ini_get('include_path') . PATH_SEPARATOR . modules_path . '/' . $Path[0]);
    // Load the module handler
    require_once 'handler.php';
} elseif ($Path[0] == 'dcss') {
    include_once 'skins/default/' . $Path[1];
} elseif (!empty($Path[0]) && preg_match('/\\w/', $Path[0])) {
    tailored_error('unknown_module');
} else {
    require_once 'modules/welcome.php';
}
開發者ID:knowledgejunkie,項目名稱:mythweb,代碼行數:31,代碼來源:mythweb.php


注:本文中的Modules::getModule方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。