本文整理汇总了PHP中site_project_footer函数的典型用法代码示例。如果您正苦于以下问题:PHP site_project_footer函数的具体用法?PHP site_project_footer怎么用?PHP site_project_footer使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了site_project_footer函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: cvsaccess_logs_daily
cvsaccess_logs_daily($project, $span * 7, $who);
svnaccess_logs_daily($project, $span * 7, $who);
doc_logs_daily($project, $span * 7, $who);
wiki_logs_daily($project, $span * 7, $who);
wiki_attachments_logs_daily($project, $span * 7, $who);
plugins_logs_daily($project, $span * 7, $who);
break;
case 'daily':
default:
filedownload_logs_daily($project, $span, $who);
cvsaccess_logs_daily($project, $span, $who);
svnaccess_logs_daily($project, $span, $who);
doc_logs_daily($project, $span, $who);
wiki_logs_daily($project, $span, $who);
wiki_attachments_logs_daily($project, $span, $who);
plugins_logs_daily($project, $span, $who);
}
echo '<BR><FORM METHOD="POST" NAME="access_logs_export_form">
<INPUT TYPE="HIDDEN" NAME="group_id" VALUE="' . $group_id . '">
<INPUT TYPE="HIDDEN" NAME="who" VALUE="' . $who . '">
<INPUT TYPE="HIDDEN" NAME="span" VALUE="' . $span . '">
<INPUT TYPE="HIDDEN" NAME="view" VALUE="' . $view . '">
<TABLE align="left"><TR><TD>
<INPUT TYPE="SUBMIT" NAME="SUBMIT" VALUE="' . $GLOBALS['Language']->getText('project_stats_source_code_access', 'logs_export') . '">
</TD></TR></TABLE></FORM>';
print '<BR><P>';
//
// END PAGE CONTENT CODE
//
site_project_footer(array());
示例2: footer
/**
* Display the footer for this artifact type
*
* @param params: array of parameters used to display the header
*
* @return void
*/
function footer($params)
{
site_project_footer($params);
}
示例3: site_project_header
site_project_header($params);
if (!user_isloggedin() || !user_ismember($group_id, 'A')) {
echo '<H1>' . $Language->getText('survey_admin_add_question', 'perm_denied') . '</H1>';
survey_footer(array());
exit;
}
?>
<H2><?php
echo $Language->getText('survey_admin_show_questions', 'exist_q');
?>
</H2>
<P>
<?php
echo $Language->getText('survey_admin_show_questions', 'exist_q_comm');
?>
<P>
<B><span class="highlight"><?php
echo $Language->getText('survey_admin_show_questions', 'q_id');
?>
</span></B>
<P>
<?php
/*
Select this survey from the database
*/
$sql = "SELECT survey_questions.question_id,survey_questions.question,survey_question_types.id AS question_type_id " . "FROM survey_questions,survey_question_types " . "WHERE survey_question_types.id=survey_questions.question_type AND survey_questions.group_id='" . db_ei($group_id) . "' " . "ORDER BY survey_questions.question_id DESC";
$result = db_query($sql);
survey_utils_show_questions($result, false, false);
site_project_footer($params);
示例4: displayFooter
public function displayFooter()
{
$params = array('group' => $this->project->group_id);
if ($pv = (int) HTTPRequest::instance()->get('pv')) {
$params['pv'] = (int) $pv;
}
site_project_footer($params);
}
示例5: commits_footer
function commits_footer($params)
{
site_project_footer($params);
}
示例6: docman_footer
function docman_footer($params)
{
site_project_footer($params);
}
示例7: support_footer
function support_footer($params)
{
site_project_footer($params);
}
示例8: file_utils_footer
function file_utils_footer($params)
{
site_project_footer($params);
}
示例9: scm_footer
function scm_footer()
{
echo '</div>';
site_project_footer(array());
}
示例10: footer
function footer()
{
site_project_footer($this->html_params);
}
示例11: frs_footer
function frs_footer()
{
site_project_footer(array());
}
示例12: renderDefinitionFormat
public function renderDefinitionFormat()
{
project_admin_header(array('title' => $GLOBALS['Language']->getText('plugin_docman', 'export_format')));
echo '<h3>' . $GLOBALS['Language']->getText('plugin_docman', 'perm_exp_format') . '</h3>';
echo '<p>' . $GLOBALS['Language']->getText('plugin_docman', 'perm_exp_format_msg') . '</p>';
$title_arr = array($GLOBALS['Language']->getText('plugin_docman', 'format_label'), $GLOBALS['Language']->getText('plugin_docman', 'format_sample'), $GLOBALS['Language']->getText('plugin_docman', 'format_description'));
echo html_build_list_table_top($title_arr);
$i = 0;
echo "<tr class='" . util_get_alt_row_color($i++) . "'>";
echo "<td><b>" . $GLOBALS['Language']->getText('plugin_docman', 'format_id') . "</b></td>";
echo "<td>53</td>";
echo "<td>" . $GLOBALS['Language']->getText('plugin_docman', 'format_id_desc') . "</td>";
echo "</tr>";
echo "<tr class='" . util_get_alt_row_color($i++) . "'>";
echo "<td><b>" . $GLOBALS['Language']->getText('plugin_docman', 'format_path') . "</b></td>";
echo "<td>/My Folder/My Document</td>";
echo "<td>" . $GLOBALS['Language']->getText('plugin_docman', 'format_path_desc') . "</td>";
echo "</tr>";
echo "<tr class='" . util_get_alt_row_color($i++) . "'>";
echo "<td><b>" . $GLOBALS['Language']->getText('plugin_docman', 'format_type') . "</b></td>";
echo "<td>File</td>";
echo "<td>" . $GLOBALS['Language']->getText('plugin_docman', 'format_type_desc') . "</td>";
echo "</tr>";
echo "<tr class='" . util_get_alt_row_color($i++) . "'>";
echo "<td><b>" . $GLOBALS['Language']->getText('plugin_docman', 'format_user_group') . "</b></td>";
echo "<td>Developper Group</td>";
echo "<td>" . $GLOBALS['Language']->getText('plugin_docman', 'format_user_group_desc') . "</td>";
echo "</tr>";
echo "</table>";
site_project_footer(array());
}
示例13: project_admin_footer
function project_admin_footer($params)
{
site_project_footer($params);
}
示例14: survey_footer
function survey_footer($params)
{
site_project_footer($params);
}
示例15: forum_footer
function forum_footer($params)
{
global $group_id, $HTML;
/*
if general news, show general site footer
Otherwise, show project footer
*/
//backwards compatibility for "general news" which is no longer permitted to be submitted
if ($group_id == $GLOBALS['sys_news_group']) {
$HTML->footer($params);
} else {
site_project_footer($params);
}
}