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


PHP templates::has_oo_templates方法代碼示例

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


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

示例1: rawurlencode

    }
    $calendar_module = $GO_MODULES->get_module('calendar');
    if ($calendar_module) {
        if ($GO_SECURITY->has_permission($GO_SECURITY->user_id, $calendar_module['acl_read']) || $GO_SECURITY->has_permission($GO_SECURITY->user_id, $calendar_module['acl_write'])) {
            echo '<td class="ModuleIcons" nowrap>';
            echo '<a href="' . $calendar_module['url'] . 'event.php?contact_id=' . $contact_id . '&return_to=' . rawurlencode($link_back) . '"><img src="' . $GO_THEME->images['cal_compose'] . '" border="0" height="32" width="32" /><br />' . $ab_new_event . '</td>';
            echo '</td>';
            $tabtable->add_tab('calendar', $ab_events);
            $tabtable->add_tab('todos', $ab_todos);
        }
    }
    $templates_plugin = $GO_MODULES->get_plugin('templates');
    if ($templates_plugin) {
        require_once $templates_plugin['path'] . 'classes/templates.class.inc';
        $tp = new templates();
        if ($tp->has_oo_templates($GO_SECURITY->user_id)) {
            echo '<td class="ModuleIcons" nowrap>';
            echo '<a target="_blank" href="' . $GO_MODULES->url . 'templates/download_oo_template.php?contact_id=' . $contact_id . '"><img src="' . $GO_THEME->images['new_letter'] . '" border="0" height="32" width="32" /><br />' . $ab_oo_doc . '</td>';
            echo '</td>';
        }
    }
    $tabtable->add_tab('read_permissions', $strReadRights);
    $tabtable->add_tab('write_permissions', $strWriteRights);
}
echo '</tr></table>';
$active_tab = isset($_REQUEST['active_tab']) ? $_REQUEST['active_tab'] : null;
if (isset($active_tab)) {
    $tabtable->set_active_tab($active_tab);
}
$link_back = cleanup_url($link_back . '&' . $tabtable->get_link_back());
echo '<input type="hidden" name="link_back" value="' . $link_back . '" />';
開發者ID:BackupTheBerlios,項目名稱:hpt-obm-svn,代碼行數:31,代碼來源:contact.php


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