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


PHP plugin::fetch方法代码示例

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


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

示例1: t

$ms2->AddIconField('details', 'index.php?mod=usrmgr&action=details&userid=', t('Details'));
$ms2->AddIconField('send_mail', 'index.php?mod=mail&action=newmail&step=2&userID=', t('Mail senden'));
$ms2->AddIconField('change_pw', 'index.php?mod=usrmgr&action=newpwd&step=2&userid=', t('Passwort ändern'), 'IfLowerOrEqualUserlevel');
if ($auth['type'] >= 2) {
    $ms2->AddIconField('assign', 'index.php?mod=auth&action=switch_to&userid=', t('Benutzer wechseln'), 'IfLowerUserlevel');
}
if ($auth['type'] >= 3 and $func->isModActive('foodcenter')) {
    $ms2->AddIconField('paid', 'index.php?mod=foodcenter&action=account&act=payment&step=2&userid=', t('Geld auf Konto buchen'));
    #  $ms2->AddIconField('paid', 'index.php?mod=foodcenter&action=account&act=himbalance&step=2&userid=', t('Kontostand zeigen'));
}
$ms2->AddIconField('locked', 'index.php?mod=usrmgr&step=11&userid=', t('Account freigeben'), 'IfLocked');
$ms2->AddIconField('unlocked', 'index.php?mod=usrmgr&step=10&userid=', t('Account sperren'), 'IfUnlocked');
// Add icons depending on other modules
include_once "inc/classes/class_plugin.php";
$plugin = new plugin('usrmgr_search');
while (list($caption, $inc) = $plugin->fetch()) {
    include_once $inc;
}
if ($auth['type'] >= 2) {
    $ms2->AddIconField('edit', 'index.php?mod=usrmgr&action=change&step=1&userid=', t('Editieren'));
}
if ($auth['type'] >= 3) {
    $ms2->AddIconField('delete', 'index.php?mod=usrmgr&action=delete&step=2&userid=', t('Löschen'));
}
if ($auth['type'] >= 2) {
    $res = $db->qry("SELECT * FROM %prefix%party_usergroups");
    $ms2->AddMultiSelectAction("Gruppenzuordung aufheben", "index.php?mod=usrmgr&action=group&step=30&group_id=0", 0, 'delete_group');
    while ($row = $db->fetch_array($res)) {
        $ms2->AddMultiSelectAction("Der Gruppe '{$row['group_name']}' zuordnen", "index.php?mod=usrmgr&action=group&step=30&group_id={$row['group_id']}", 0, 'assign_group');
    }
    $db->free_result($res);
开发者ID:eistr2n,项目名称:lansuite,代码行数:31,代码来源:search.inc.php


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