本文整理汇总了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 . '" />';