本文整理汇总了PHP中FSS_Helper::PageTitlePopup方法的典型用法代码示例。如果您正苦于以下问题:PHP FSS_Helper::PageTitlePopup方法的具体用法?PHP FSS_Helper::PageTitlePopup怎么用?PHP FSS_Helper::PageTitlePopup使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FSS_Helper
的用法示例。
在下文中一共展示了FSS_Helper::PageTitlePopup方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: defined
/**
* @package Freestyle Joomla
* @author Freestyle Joomla
* @copyright (C) 2013 Freestyle Joomla
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
?>
<?php
echo $this->tmpl ? FSS_Helper::PageStylePopup(true) : FSS_Helper::PageStyle();
?>
<?php
echo $this->tmpl ? FSS_Helper::PageTitlePopup("TESTIMONIALS", "ADD_A_TESTIMONIAL") : FSS_Helper::PageTitle("TESTIMONIALS", "ADD_A_TESTIMONIAL");
?>
<div class='fss_kb_comment_add' id='add_comment'>
<?php
$this->comments->DisplayAdd();
?>
</div>
<div id="comments"></div>
<div class='fss_comments_result_<?php
echo $this->comments->uid;
?>
'></div>
<?php
示例2: elseif
if ($this->mode == "user") {
?>
<?php
echo FSS_Helper::PageTitlePopup("INCLUDE_USER");
?>
<?php
} elseif ($this->mode == "admin") {
?>
<?php
echo FSS_Helper::PageTitlePopup("INCLUDE_HANDLER");
?>
<?php
} else {
?>
<?php
echo FSS_Helper::PageTitlePopup("CHANGE_USER");
?>
<?php
}
?>
<form action="<?php
echo FSSRoute::_('index.php?option=com_fss&what=pickuser&view=admin_support&layout=users&tmpl=component', false);
?>
" method="post" name="fssForm" id="fssForm">
<div class="input-append">
<input type="text" class="input-medium" placeholder="<?php
echo JText::_("SEARCH");
?>
" name="search" id="filter" value="<?php
示例3: defined
* @copyright (C) 2013 Freestyle Joomla
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
?>
<div class="fss_main">
<form id="mainform" action="<?php
echo JRoute::_("index.php");
?>
" method="post" class="form-horizontal form-condensed">
<?php
echo FSS_Helper::PageStylePopup(true);
?>
<?php
echo FSS_Helper::PageTitlePopup('SUPPORT_ADMIN', $this->canned_item->id > 0 ? "EDIT_CANNED_REPLY" : "NEW_CANNED_REPLY");
?>
<input type="hidden" name="option" value="com_fss" />
<input type="hidden" name="view" value="admin_support" />
<input type="hidden" name="layout" value="canned" />
<input type="hidden" name="tmpl" value="component" />
<input type="hidden" name="saveid" value="<?php
echo FSS_Helper::escape($this->canned_item->id);
?>
" />
<div class="control-group">
<label class="control-label"><?php
echo JText::_('DESCRIPTION');
?>
示例4: defined
<?php
/**
* @package Freestyle Joomla
* @author Freestyle Joomla
* @copyright (C) 2013 Freestyle Joomla
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
?>
<?php
echo FSS_Helper::PageStylePopup(true);
echo FSS_Helper::PageTitlePopup('SUPPORT_ADMIN', "EMAIL_TICKET_PREVIEW");
?>
<?php
$this->email_preview = true;
global $curcol;
global $cols;
$cols = 2;
$curcol = 1;
function fss_start_col()
{
global $curcol;
if ($curcol == 1) {
echo "<tr>";
} else {
echo "";
}
$curcol++;
示例5: defined
<?php
/**
* @package Freestyle Joomla
* @author Freestyle Joomla
* @copyright (C) 2013 Freestyle Joomla
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
echo FSS_Helper::PageStylePopup(true);
echo FSS_Helper::PageTitlePopup('Add User');
?>
<form action="<?php
echo FSSRoute::_('index.php?option=com_fss&view=listusers');
?>
" method="post" name="adminForm" id="adminForm">
<style>
table.adminlist td
{
padding-top:0px;
padding-bottom:0px;
/*padding:0px;*/
}
</style>
<div id="editcell">
<table class="fss_admin_header">
<tr>
<td width="100%">
<?php
echo JText::_('Filter');
示例6: defined
<?php
/**
* @package Freestyle Joomla
* @author Freestyle Joomla
* @copyright (C) 2013 Freestyle Joomla
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
require_once JPATH_COMPONENT . DS . 'helper' . DS . 'glossary.php';
echo FSS_Helper::PageStylePopup();
echo FSS_Helper::PageTitlePopup("GLOSSARY", $this->glossary->word);
?>
<?php
echo $this->glossary->description;
echo $this->glossary->longdesc;
?>
<?php
echo FSS_Helper::PageStylePopupEnd();
示例7: defined
/**
* @package Freestyle Joomla
* @author Freestyle Joomla
* @copyright (C) 2013 Freestyle Joomla
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
?>
<?php
echo FSS_Helper::PageStylePopup(FSS_Input::getInt('window') == '1' ? '2' : true);
?>
<?php
echo FSS_Helper::PageTitlePopup($this->faq['question']);
//echo JRequest::getVar('window');
?>
<div class="media">
<?php
echo $this->content->EditPanel($this->faq);
?>
<div class="media-body">
<?php
if ($this->faq['featured']) {
?>
<div class="pull-right well well-xsmall">
示例8: defined
* @author Freestyle Joomla
* @copyright (C) 2013 Freestyle Joomla
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
?>
<?php
if (FSS_Input::getCmd('tmpl') == "component" && !FSS_Input::getString('print')) {
?>
<?php
echo FSS_Helper::PageStylePopup(true);
?>
<?php
echo FSS_Helper::PageTitlePopup($this->art['title']);
?>
<?php
} else {
?>
<?php
echo FSS_Helper::PageStyle();
?>
<?php
if (!FSS_Input::getString('print')) {
?>
<?php
echo $this->content->EditPanel($this->art);
示例9: defined
* @copyright (C) 2013 Freestyle Joomla
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
?>
<div class="fss_main">
<form id="mainform" action="<?php
echo JRoute::_("index.php");
?>
" method="post" class="form-horizontal form-condensed">
<?php
echo FSS_Helper::PageStylePopup(true);
?>
<?php
echo FSS_Helper::PageTitlePopup('SUPPORT_ADMIN', $this->sig_item->id > 0 ? "EDIT_SIGNATURE" : "NEW_SIGNATURE");
?>
<input type="hidden" name="option" value="com_fss" />
<input type="hidden" name="view" value="admin_support" />
<input type="hidden" name="layout" value="signature" />
<input type="hidden" name="tmpl" value="component" />
<input type="hidden" name="task" value="signature.save" />
<input type="hidden" name="saveid" value="<?php
echo $this->sig_item->id;
?>
" />
<div class="control-group">
<label class="control-label"><?php
echo JText::_('DESCRIPTION');
示例10: defined
* @author Freestyle Joomla
* @copyright (C) 2013 Freestyle Joomla
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
?>
<form action="<?php
echo FSSRoute::_("index.php?option=com_fss&view=admin_support&task=update.field");
?>
" method="post" class="form-horizontal" id="fssForm">
<?php
echo FSS_Helper::PageStylePopup(true);
?>
<?php
echo FSS_Helper::PageTitlePopup('SUPPORT_ADMIN', "EDIT_TICKET_FIELD");
?>
<?php
$input = FSSCF::FieldInput($this->field, $this->errors, "ticket", array('ticketid' => FSS_Input::getInt('ticketid'), 'userid' => $this->ticket->user_id, 'ticket' => $this->ticket));
?>
<div class="control-group" style="min-height:<?php
echo (int) $this->field['min_popup_height'];
?>
px;">
<label class="control-label">
<?php
echo FSSCF::FieldHeader($this->field, false, false);
?>
示例11: defined
<?php
/**
* @package Freestyle Joomla
* @author Freestyle Joomla
* @copyright (C) 2013 Freestyle Joomla
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
echo FSS_Helper::PageStylePopup(true);
echo FSS_Helper::PageTitlePopup("INCLUDE_USER");
?>
<p><?php
echo JText::_('INCLUDE_USER_HELP');
?>
</p>
<form action="<?php
echo FSSRoute::_('index.php?option=com_fss&view=ticket&tmpl=component&what=pickccuser&ticketid=' . FSS_Input::getInt('ticketid'));
?>
" method="post" name="fssForm">
<div class="input-append">
<input type="text" name="search" id="filter" value="<?php
echo FSS_Helper::escape($this->search);
?>
" onchange="document.fssForm.submit();" placeholder="<?php
echo JText::_("SEARCH");
?>
"/>
<button class="btn btn-primary" onclick="this.form.submit();"><?php
示例12: defined
<?php
/**
* @package Freestyle Joomla
* @author Freestyle Joomla
* @copyright (C) 2013 Freestyle Joomla
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
echo FSS_Helper::PageStylePopup(true);
echo FSS_Helper::PageTitlePopup('SUPPORT_ADMIN', "Signatures");
?>
<div class="fss_spacer"></div>
<table class="table table-bordered table-condensed table-striped">
<thead>
<tr>
<th style="text-align:left;"><?php
echo JText::_('Description');
?>
</th>
<th width="1%"><?php
echo JText::_('DEFAULT');
?>
</th>
<th width="1%"><?php
echo JText::_('PERSONAL');
?>
</th>
示例13: defined
<?php
/**
* @package Freestyle Joomla
* @author Freestyle Joomla
* @copyright (C) 2013 Freestyle Joomla
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
echo FSS_Helper::PageStylePopup(true);
echo FSS_Helper::PageTitlePopup(JText::_("Select a new author"));
?>
<form action="<?php
echo FSSRoute::_('index.php?option=com_fss&view=admin_content&tmpl=component&type=' . $this->id . '&what=author');
?>
" method="post" name="fssForm">
<div id="editcell">
<div class="input-append">
<input type="text" name="search" id="xsearch" value="<?php
echo FSS_Helper::escape($this->search);
?>
" onchange="document.fssForm.submit();" placeholder="<?php
echo JText::_("SEARCH");
?>
" />
<button class="btn btn-primary" onclick="this.form.submit();"><?php
echo JText::_("GO");
?>
</button>
<button class="btn btn-default" onclick="jQuery('#xsearch').val('');"><?php
示例14: defined
/**
* @package Freestyle Joomla
* @author Freestyle Joomla
* @copyright (C) 2013 Freestyle Joomla
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
?>
<form id="fssForm" name="fssForm" action="<?php
echo JRoute::_('index.php?option=com_fss&view=admin_insert&tmpl=component&type=' . FSS_Input::getCmd('type') . "&editor=" . FSS_Input::getCmd('editor'));
?>
" method='post'>
<?php
echo FSS_Helper::PageStylePopup(true);
echo FSS_Helper::PageTitlePopup(JText::_($this->addbtntext));
?>
<?php
$this->OutputTable();
?>
</div>
<div class="modal-footer">
<a href='#' class="btn btn-default" onclick='parent.fss_modal_hide(); return false;'><?php
echo JText::_('CANCEL');
?>
</a>
</div>
</form>
示例15: defined
* @author Freestyle Joomla
* @copyright (C) 2013 Freestyle Joomla
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
?>
<form action="<?php
echo FSSRoute::_("index.php?option=com_fss&view=ticket&tmpl=component&ticketid=" . FSS_Input::getInt('ticketid'));
?>
" method="post" class="form-horizontal" id="fssForm">
<?php
echo FSS_Helper::PageStylePopup(true);
?>
<?php
echo FSS_Helper::PageTitlePopup("SUPPORT", "EDIT_TICKET");
?>
<?php
$input = FSSCF::FieldInput($this->field, $this->errors, "ticket", array('ticketid' => FSS_Input::getInt('ticketid', 0), 'userid' => $this->ticket['user_id'], 'ticket' => $this->ticket));
?>
<div class="control-group" style="min-height:<?php
echo $this->field['min_popup_height'];
?>
px;">
<label class="control-label">
<?php
echo FSSCF::FieldHeader($this->field, false, false);
?>