当前位置: 首页>>代码示例>>PHP>>正文


PHP func::admin_exists方法代码示例

本文整理汇总了PHP中func::admin_exists方法的典型用法代码示例。如果您正苦于以下问题:PHP func::admin_exists方法的具体用法?PHP func::admin_exists怎么用?PHP func::admin_exists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在func的用法示例。


在下文中一共展示了func::admin_exists方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

    $auth["type"] = 3;
    $auth["login"] = 1;
    // Load DB-Data after installwizard step 3
    if ($_GET["action"] == "wizard" and $_GET["step"] > 3) {
        $cfg = $func->read_db_config();
        // read Configtable
    }
} else {
    ### Normal auth cycle and Database-init
    $db->connect(0);
    $IsAboutToInstall = 0;
    $translation->load_trans('db', $_GET['mod']);
    // DB-Mode on Running System
    // FIX : Add function to scan DB for correkt config and Tables (prefix etc.)
    // Reset DB-Success in Setup if no Adm.-Account was found, because a connection could work, but prefix is wrong
    if (!$func->admin_exists() and ($_GET["action"] == "wizard" and $_GET["step"] <= 3 or $_GET["action"] == "ls_conf")) {
        $db->success = 0;
    }
    $cfg = $func->read_db_config();
    // Config-Tabelle aulesen
    $sec->check_blacklist();
    // Set timezone info (php + mysql)
    if ($cfg['sys_timezone'] and function_exists('date_default_timezone_set')) {
        #date_default_timezone_set($cfg['sys_timezone']);
        #$db->qry('SET SESSION time_zone = %string%', $cfg['sys_timezone']);
        ##$db->qry('SET SESSION time_zone = \'+0:00\'');
    }
    if (!$_GET['mod']) {
        $_GET['mod'] = 'home';
    }
    $func->getActiveModules();
开发者ID:eistr2n,项目名称:lansuite,代码行数:31,代码来源:index.php

示例2: t

$dsp->AddDoubleRow("", "<a href=\"index.php?mod=install&action=menu\"><img src=\"design/images/icon_tree.png\" border=\"0\" /> " . t('Navigationsmenü verwalten') . "</a>");
$dsp->AddDoubleRow("", "<a href=\"index.php?mod=install&action=translation\"><img src=\"design/images/icon_translate.png\" border=\"0\" /> " . t('Texte übersetzen') . "</a>");
#$dsp->AddDoubleRow("", "<a href=\"index.php?mod=install&action=adminaccount\"><img src=\"design/images/icon_add_user.png\" border=\"0\" /> ".t('Administrator Account anlegen')."</a>");
$dsp->AddFieldSetEnd();
$dsp->AddFieldSetStart(t('System Zustand'));
$dsp->AddDoubleRow("", "<a href=\"index.php?mod=install&action=envcheck\"><img src=\"design/images/icon_help.png\" border=\"0\" /> " . t('Systemvoraussetzungen testen') . "</a>");
$dsp->AddDoubleRow("", "<a href=\"index.php?mod=install&action=log\"><img src=\"design/images/icon_save.png\" border=\"0\" /> " . t('Log File ansehen') . "</a>");
$dsp->AddDoubleRow("", "<a href=\"index.php?mod=install&action=sessions\"><img src=\"design/images/icon_generate.png\" border=\"0\" /> " . t('Aktuelle Sessions auflisten') . "</a>");
$dsp->AddFieldSetEnd();
$dsp->AddFieldSetStart(t('Lansuite updaten / reparieren'));
$dsp->AddDoubleRow("", "<a href=\"index.php?mod=install&action=db\"><img src=\"design/images/icon_database.png\" border=\"0\" /> " . t('Datenbank updaten und verwalten (sollte nach jedem Lansuite-Update ausgeführt werden)') . "</a>");
$dsp->AddDoubleRow("", "<a href=\"index.php?mod=install&action=dbmenu\"><img src=\"design/images/icon_change.png\" border=\"0\" /> " . t('Menüeinträge neu schreiben') . "</a>");
$dsp->AddFieldSetEnd();
$dsp->AddFieldSetStart(t('Daten-Management'));
$dsp->AddDoubleRow("", "<a href=\"index.php?mod=install&action=import\"><img src=\"design/images/icon_in.png\" border=\"0\" /> " . t('Daten-Import') . "</a>");
$dsp->AddDoubleRow("", "<a href=\"index.php?mod=install&action=export\"><img src=\"design/images/icon_forward.png\" border=\"0\" /> " . t('Daten-Export') . "</a>");
$dsp->AddDoubleRow("", "<a href=\"index.php?mod=install&action=mc_search\"><img src=\"design/images/icon_search.png\" border=\"0\" /> " . t('Kommentare aller Module durchsuchen') . "</a>");
$dsp->AddFieldSetEnd();
if (!func::admin_exists()) {
    $func->information(t('<b>ACHTUNG</b>: Es existiert noch kein Admin-Account. Daher hat JEDER Benutzer Admin-Rechte. Lege unbedingt im Benutzermanager einen Superadmin an.'));
} else {
    $module_list = $db->qry("SELECT module.caption FROM %prefix%modules AS module\n            LEFT JOIN %prefix%menu AS menu ON menu.module = module.name\n            LEFT JOIN %prefix%user_permissions AS perm ON (module.name = perm.module)\n            WHERE menu.file != '' and ISNULL(perm.module)\n            GROUP BY menu.module\n            ");
    if ($db->num_rows() > 0) {
        while ($row = $db->fetch_array($module_list)) {
            $mod_list .= "{$row["caption"]}, ";
        }
        $mod_list = substr($mod_list, 0, strlen($mod_list) - 2);
        $func->information(t('Die folgenden Module haben noch keinen Admin und sind daher für jeden Admin änderbar:<br>%1', $mod_list), NO_LINK);
    }
}
$dsp->AddContent();
开发者ID:eistr2n,项目名称:lansuite,代码行数:31,代码来源:index.php


注:本文中的func::admin_exists方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。