本文整理汇总了PHP中Lobby::js方法的典型用法代码示例。如果您正苦于以下问题:PHP Lobby::js方法的具体用法?PHP Lobby::js怎么用?PHP Lobby::js使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Lobby
的用法示例。
在下文中一共展示了Lobby::js方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
* Default Styles
*/
\Lobby::addStyle("home", "/includes/lib/core/CSS/font.css");
\Lobby::addStyle("main", "/includes/lib/core/CSS/main.css");
/**
* Some checking to make sure Lobby works fine
*/
if (!is_writable(L_DIR) || !is_writable(APPS_DIR)) {
$GLOBALS['initError'] = array("Wrong Permissions", "The permission of Lobby is not correct. All you have to do is change the permission of <blockquote>" . L_DIR . "</blockquote>to read and write (0775).");
if (\Lobby::$sysinfo['os'] == "linux") {
$GLOBALS['initError'][1] = $GLOBALS['initError'][1] . "<p clear>On Linux systems, do this in terminal : <blockquote>sudo chown \${USER}:www-data " . L_DIR . " -R && sudo chmod 0775 " . L_DIR . " -R</blockquote></p>";
}
}
if (isset($GLOBALS['initError'])) {
echo "<html><head>";
\Lobby::$js = array();
\Lobby::head();
echo "</head><body><div class='workspace'><div class='contents'>";
ser($GLOBALS['initError'][0], $GLOBALS['initError'][1]);
echo "</div></div></body></html>";
exit;
}
\Lobby::curPage(true);
/**
* Add the <head> files if it's not the install page
*/
if (\Lobby::curPage() != "/admin/install.php") {
/**
* Styles
*/
\Lobby::addStyle("jqueryui", "/includes/lib/jquery/jquery-ui.css");