本文整理汇总了PHP中FSS_Helper::PageSubTitle方法的典型用法代码示例。如果您正苦于以下问题:PHP FSS_Helper::PageSubTitle方法的具体用法?PHP FSS_Helper::PageSubTitle怎么用?PHP FSS_Helper::PageSubTitle使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FSS_Helper
的用法示例。
在下文中一共展示了FSS_Helper::PageSubTitle方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
}
?>
<div class='fss_pagewrapper'>
<?php
echo $this->pagination->getListFooter();
?>
</div>
</form>
<?php
} else {
?>
<?php
echo FSS_Helper::PageSubTitle("THERE_ARE_CURRENTLY_NO_ANNOUNCEMENTS");
?>
<?php
}
?>
<?php
include JPATH_SITE . DS . 'components' . DS . 'com_fss' . DS . '_powered.php';
?>
<?php
if (FSS_Settings::get('glossary_announce')) {
echo FSS_Glossary::Footer();
}
?>
示例2:
echo FSS_Helper::escape($this->ticket->body);
?>
</textarea>
<?php
FSS_Helper::HelpText("support_open_main_message_after");
?>
<?php
}
?>
</div>
<?php
if ($this->support_user_attach) {
?>
<?php
echo FSS_Helper::PageSubTitle(JText::sprintf("UPLOAD_FILE", FSS_Helper::display_filesize(FSS_Helper::getMaximumFileUploadSize())), false);
?>
<?php
include JPATH_SITE . DS . 'components' . DS . 'com_fss' . DS . 'tmpl' . DS . 'attach.php';
?>
<?php
}
?>
<p>
<input class='btn btn-primary' type='submit' value='<?php
echo JText::_("CREATE_NEW_TICKET");
?>
' id='addcomment'>
</p>
示例3: defined
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
?>
<?php
echo FSS_Helper::PageStyle();
echo FSS_Helper::PageTitle("SUPPORT", "NEW_SUPPORT_TICKET");
?>
<div class="fss_spacer"></div>
<?php
include $this->snippet(JPATH_SITE . DS . 'components' . DS . 'com_fss' . DS . 'views' . DS . 'ticket' . DS . 'snippet' . DS . '_openheader.php');
?>
<?php
echo FSS_Helper::PageSubTitle("PLEASE_SELECT_A_DEPARTMENT_FOR_YOUR_SUPPORT_ENQUIRY");
?>
<?php
FSS_Helper::HelpText("support_open_dept_header");
?>
<?php
if ($this->product && FSS_Settings::get('support_sel_prod_dept')) {
?>
<h4 class='product-small'>
<?php
echo JText::_("PRODUCT");
?>
:
示例4: foreach
}
?>
<?php
if (FSS_Settings::get("messages_at_top") == 0 || FSS_Settings::get("messages_at_top") == 2) {
include $this->snippet(JPATH_SITE . DS . 'components' . DS . 'com_fss' . DS . 'views' . DS . 'ticket' . DS . 'snippet' . DS . '_messages_cont.php');
}
?>
<?php
if (count($this->attach) > 0) {
?>
<?php
echo FSS_Helper::PageSubTitle("ATTACHEMNTS");
?>
<?php
FSS_Helper::HelpText("support_user_view_attach_header");
?>
<?php
foreach ($this->attach as $attach) {
?>
<?php
if ($attach['inline']) {
continue;
}
?>
示例5: foreach
FSS_Table::TableClose();
$grouping = "";
$open = false;
if ($this->ticket->customfields && count($this->ticket->customfields) > 0) {
foreach ($this->ticket->customfields as $field) {
if ($field['grouping'] == "") {
continue;
}
if ($field['adminhide']) {
continue;
}
if ($field['grouping'] != $grouping) {
if ($open) {
FSS_Table::TableClose();
}
echo FSS_Helper::PageSubTitle($field['grouping']);
FSS_Table::TableOpen();
$open = true;
$grouping = $field['grouping'];
}
FSS_Table::ColStart("tr_cf" . $field['id'] . " tr_cf_" . $field['alias']);
?>
<th width='<?php
echo FSS_Settings::get('ticket_label_width');
?>
'><?php
echo FSSCF::FieldHeader($field);
?>
</th>
<td>
<?php
示例6:
$curstatus = FSS_Input::getCmd('tickets');
if ($curstatus == -1) {
$curstatus = FSS_Input::getCmd('status');
}
?>
<div id="batch_form" class="form-horizontal form-condensed" style='display: none'>
<div class="batch_print_hide">
<?php
echo FSS_Helper::PageSubTitle("BATCH_ACTIONS");
?>
</div>
<div class="batch_action_hide">
<?php
echo FSS_Helper::PageSubTitle("BATCH_PRINT");
?>
</div>
<div class="control-group">
<label class="control-label"><?php
echo JText::_("SELECT");
?>
</label>
<div class="controls">
<div class="btn-group">
<button class="btn btn-default" id="batch_select_all"><?php
echo JText::_('ALL');
?>
</button>
<button class="btn btn-default" id="batch_select_none"><?php
示例7:
<?php
include $this->snippet(JPATH_SITE . DS . 'components' . DS . 'com_fss' . DS . 'views' . DS . 'admin_support' . DS . 'snippet' . DS . '_ticket_toolbar.php');
if (FSS_Permission::auth("core.create", "com_fss.kb") || FSS_Permission::auth("core.create", "com_fss.faq")) {
include $this->snippet(JPATH_SITE . DS . 'components' . DS . 'com_fss' . DS . 'views' . DS . 'admin_support' . DS . 'snippet' . DS . '_export.php');
}
?>
<?php
if (FSS_Settings::get("messages_at_top") == 2 || FSS_Settings::get("messages_at_top") == 3) {
include $this->snippet(JPATH_SITE . DS . 'components' . DS . 'com_fss' . DS . 'views' . DS . 'admin_support' . DS . 'snippet' . DS . '_messages_cont.php');
}
?>
<?php
echo FSS_Helper::PageSubTitle("TICKET_DETAILS");
?>
<?php
include $this->snippet(JPATH_SITE . DS . 'components' . DS . 'com_fss' . DS . 'views' . DS . 'admin_support' . DS . 'snippet' . DS . '_ticket_info.php');
?>
<?php
if (FSS_Settings::get("messages_at_top") == 0 || FSS_Settings::get("messages_at_top") == 1) {
include $this->snippet(JPATH_SITE . DS . 'components' . DS . 'com_fss' . DS . 'views' . DS . 'admin_support' . DS . 'snippet' . DS . '_messages_cont.php');
}
?>
<?php
include JPATH_SITE . DS . 'components' . DS . 'com_fss' . DS . '_powered.php';
示例8:
<a href="#" id='fss_form_apply' class="btn btn-success"><i class="icon-apply icon-white"></i> <?php
echo JText::_('SAVE');
?>
</a>
<a href="#" id='fss_form_save' class="btn btn-default"><i class="icon-save"></i> <?php
echo JText::_('SAVE_AND_CLOSE');
?>
</a>
<a href="#" id='fss_form_cancel' class="btn btn-default"><i class="icon-cancel"></i> <?php
echo JText::_('CANCEL');
?>
</a>
</div>
<?php
echo FSS_Helper::PageSubTitle("MY_SETTINGS");
?>
<div class="form-horizontal form-condensed">
<h4><?php
echo JText::_("TICKET_LIST");
?>
</h4>
<div class="control-group">
<label class="control-label"><?php
echo JText::_("DEFAULT_PER_PAGE");
?>
</label>
<div class="controls">
<input type="text" class="input-mini" name='per_page' value='<?php
示例9: 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::PageSubTitle("<a href='" . FSSRoute::_('index.php?option=com_fss&view=report') . "'>\n\t<img class='fss_support_main_image' src='" . JURI::root(true) . "/components/com_fss/assets/images/support/report_24.png'> " . JText::_("REPORTS") . "</a>", false);
?>
<p>
<a href="<?php
echo FSSRoute::_('index.php?option=com_fss&view=report');
?>
"><?php
echo JText::_('VIEW_NOW');
?>
</a>
</p>
示例10: 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::PageSubTitle($this->descs . ': ' . ($this->item['id'] > 0 ? JText::_('EDIT') : JText::_('CREATE')));
?>
<p class="pull-right">
<a href="#" id='fss_form_apply' class="btn btn-success"><i class="icon-apply icon-white"></i> <?php
echo JText::_('SAVE');
?>
</a>
<a href="#" id='fss_form_save' class="btn btn-default"><i class="icon-apply"></i> <?php
echo JText::_('SAVE_AND_CLOSE');
?>
</a>
<a href="#" id='fss_form_savenew' class="btn btn-default"><i class="icon-save-new"></i> <?php
echo JText::_('SAVE_A_ADD');
?>
</a>
<a href="#" id='fss_form_cancel' class="btn btn-default"><i class="icon-cancel"></i> <?php
echo JText::_('CANCEL');
?>
</a>
<?php
if ($this->item['id'] > 0) {
示例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;
if (JComponentHelper::getParams('com_users')->get('allowUserRegistration')) {
?>
<?php
echo FSS_Helper::PageSubTitle("REGISTER");
?>
<?php
$register_url = FSSRoute::_("index.php?option=com_fss&view=login&layout=register&return=" . base64_encode($_SERVER['REQUEST_URI']));
if (property_exists($this, "return")) {
$register_url = FSSRoute::_("index.php?option=com_fss&view=login&layout=register&return=" . $this->return);
}
if (JRequest::getVar('return')) {
$register_url = FSSRoute::_("index.php?option=com_fss&view=login&layout=register&return=" . JRequest::getVar('return'));
}
if (FSS_Settings::get('support_custom_register')) {
$register_url = FSS_Settings::get('support_custom_register');
}
?>
<p><?php
echo JText::sprintf('IF_YOU_WOULD_LIKE_TO_CREATE_A_USER_ACCOUNT_PLEASE_REGISTER_HERE', $register_url);
?>
</p>
示例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;
?>
<?php
echo FSS_Helper::PageSubTitle("<a href='" . FSSRoute::x('&layout=moderate&ident=') . "'><img src='" . JURI::root(true) . "/components/com_fss/assets/images/support/moderate_24.png'> " . JText::_("MODERATE") . "</a>", false);
?>
<p>
<?php
echo JText::sprintf("MOD_STATUS", $this->comments->GetModerateTotal(), FSSRoute::_('index.php?option=com_fss&view=admin_moderate'));
?>
</p>
<?php
$this->comments->DisplayModStatus();
示例13:
">
<input type="hidden" name="boxchecked" value="0" />
<input type="hidden" name="filter_order" value="<?php
echo FSS_Helper::escape($this->order);
?>
" />
<input type="hidden" name="filter_order_Dir" value="<?php
echo FSS_Helper::escape($this->order_Dir);
?>
" />
</form>
<?php
} else {
?>
<?php
echo FSS_Helper::PageSubTitle('MEMBERS');
?>
<div class="alert alert-info"><?php
echo JText::_("PLEASE_SAVE_FIRST");
?>
</div>
<?php
}
?>
<div class="modal fss_modal" id="popup_html" style='display: none'>
<div class="modal-header">
<button class="close simplemodal-close" data-dismiss="modal">×</button>
<h3><?php
echo JText::_("CHOOSE_NEW_PERM");
?>
示例14: 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;
$passwd_field = "password";
$users_com = "com_users";
$login_task = "user.login";
?>
<?php
echo FSS_Helper::PageSubTitle("LOGIN");
?>
<p><?php
echo JText::_("LOG_IN_TO_AN_EXISTING_ACCOUNT");
?>
</p>
<form action="<?php
echo FSSRoute::_("index.php");
?>
" method="post" name="com-login" id="com-form-login" class="form-horizontal form-condensed">
<div class="control-group">
<label class="control-label" for="username"><?php
echo JText::_("USERNAME");
示例15: elseif
}
?>
<?php
if (FSS_Settings::get('support_no_register') == 2) {
?>
<?php
include $this->snippet(JPATH_SITE . DS . 'components' . DS . 'com_fss' . DS . 'views' . DS . 'ticket' . DS . 'snippet' . DS . '_register_form.php');
}
?>
<?php
if (FSS_Settings::get('support_allow_unreg') == 1) {
?>
<?php
echo FSS_Helper::PageSubTitle("VIEW_TICKET_CREATED_WITHOUT_ACCOUNT");
?>
<?php
if (FSS_Settings::get('support_unreg_type') == 0) {
?>
<p><?php
echo JText::_("PLEASE_ENTER_YOUR_EMAIL_ADDRESS_AND_PASSWORD_PROVIDED_WITH_YOUR_TICKET");
?>
</p>
<?php
} elseif (FSS_Settings::get('support_unreg_type') == 1) {
?>
<p><?php
echo JText::_("PLEASE_ENTER_YOUR_TICKET_REFERENCE_AND_PASSWORD_PROVIDED_WITH_YOUR_TICKET");
?>