PATH:
home
/
centosnipponia
/
public_html
/
ticketing.nipponia.com
/
include
/
staff
<?php if(!defined('OSTADMININC') || !$thisstaff || !$thisstaff->isAdmin() || !$config) die('Access Denied'); $pages = Page::getPages(); ?> <h2><?php echo __('Company Profile'); ?></h2> <form action="settings.php?t=pages" method="post" class="save" enctype="multipart/form-data"> <?php csrf_token(); ?> <input type="hidden" name="t" value="pages" > <ul class="clean tabs"> <li class="active"><a href="#basic-information"><i class="icon-asterisk"></i> <?php echo __('Basic Information'); ?></a></li> <li><a href="#site-pages"><i class="icon-file"></i> <?php echo __('Site Pages'); ?></a></li> <!--osta--> </ul> <div class="tab_content" id="basic-information"> <table class="form_table settings_table" width="940" border="0" cellspacing="0" cellpadding="2"> <tbody> <?php $form = $ost->company->getForm(); $form->addMissingFields(); $form->render(); ?> </tbody> </table> </div> <div class="hidden tab_content" id="site-pages"> <table class="form_table settings_table" width="940" border="0" cellspacing="0" cellpadding="2"> <thead> <tr> <th colspan="2"> <em><?php echo sprintf(__( 'To edit or add new pages go to %s Manage > Site Pages %s'), '<a href="pages.php">','</a>'); ?></em> </th> </tr> </thead> <tbody> <tr> <td width="220" class="required"><?php echo __('Landing Page'); ?>:</td> <td> <span> <select name="landing_page_id"> <option value="">— <?php echo __('Select Landing Page'); ?> —</option> <?php foreach($pages as $page) { if(strcasecmp($page->getType(), 'landing')) continue; echo sprintf('<option value="%d" %s>%s</option>', $page->getId(), ($config['landing_page_id']==$page->getId())?'selected="selected"':'', $page->getName()); } ?> </select> <font class="error"><?php echo $errors['landing_page_id']; ?></font> <i class="help-tip icon-question-sign" href="#landing_page"></i> </span> </td> </tr> <tr> <td width="220" class="required"><?php echo __('Offline Page'); ?>:</td> <td> <span> <select name="offline_page_id"> <option value="">— <?php echo __('Select Offline Page'); ?> —</option> <?php foreach($pages as $page) { if(strcasecmp($page->getType(), 'offline')) continue; echo sprintf('<option value="%d" %s>%s</option>', $page->getId(), ($config['offline_page_id']==$page->getId())?'selected="selected"':'', $page->getName()); } ?> </select> <font class="error"><?php echo $errors['offline_page_id']; ?></font> <i class="help-tip icon-question-sign" href="#offline_page"></i> </span> </td> </tr> <tr> <td width="220" class="required"><?php echo __('Default Thank-You Page'); ?>:</td> <td> <span> <select name="thank-you_page_id"> <option value="">— <?php echo __('Select Thank-You Page'); ?> —</option> <?php foreach($pages as $page) { if(strcasecmp($page->getType(), 'thank-you')) continue; echo sprintf('<option value="%d" %s>%s</option>', $page->getId(), ($config['thank-you_page_id']==$page->getId())?'selected="selected"':'', $page->getName()); } ?> </select> <font class="error"><?php echo $errors['thank-you_page_id']; ?></font> <i class="help-tip icon-question-sign" href="#default_thank_you_page"></i> </span> </td> </tr> </tbody> </table> </div> <!--osta--> <p style="text-align:center;"> <input class="button" type="submit" name="submit-button" value="<?php echo __('Save Changes'); ?>"> <input class="button" type="reset" name="reset" value="<?php echo __('Reset Changes'); ?>"> </p> </form> <div style="display:none;" class="dialog" id="confirm-action"> <h3><?php echo __('Please Confirm'); ?></h3> <a class="close" href=""><i class="icon-remove-circle"></i></a> <hr/> <p class="confirm-action" id="delete-confirm"> <font color="red"><strong><?php echo sprintf( __('Are you sure you want to DELETE %s?'), _N('selected image', 'selected images', 2)); ?></strong></font> <br/><br/><?php echo __('Deleted data CANNOT be recovered.'); ?> </p> <div><?php echo __('Please confirm to continue.'); ?></div> <hr style="margin-top:1em"/> <p class="full-width"> <span class="buttons pull-left"> <input type="button" value="<?php echo __('No, Cancel'); ?>" class="close"> </span> <span class="buttons pull-right"> <input type="button" value="<?php echo __('Yes, Do it!'); ?>" class="confirm"> </span> </p> <div class="clear"></div> </div> <script type="text/javascript"> $(function() { $('#save input:submit.button').bind('click', function(e) { var formObj = $('#save'); if ($('input:checkbox:checked', formObj).length) { e.preventDefault(); $('.dialog#confirm-action').undelegate('.confirm'); $('.dialog#confirm-action').delegate('input.confirm', 'click', function(e) { e.preventDefault(); $('.dialog#confirm-action').hide(); $('#overlay').hide(); formObj.submit(); return false; }); $('#overlay').show(); $('.dialog#confirm-action .confirm-action').hide(); $('.dialog#confirm-action p#delete-confirm') .show() .parent('div').show().trigger('click'); return false; } else return true; }); }); </script>
[+]
..
[-] faq-categories.inc.php
[edit]
[-] settings-autoresp.inc.php
[edit]
[-] login.header.php
[edit]
[-] ticket-tasks.inc.php
[edit]
[-] task-view.inc.php
[edit]
[-] staff.inc.php
[edit]
[-] index.php
[edit]
[-] dynamic-list.inc.php
[edit]
[-] settings-tickets.inc.php
[edit]
[-] page.inc.php
[edit]
[-] emails.inc.php
[edit]
[-] dynamic-forms.inc.php
[edit]
[-] cannedresponses.inc.php
[edit]
[-] settings-system.inc.php
[edit]
[-] categories.inc.php
[edit]
[-] faq.inc.php
[edit]
[-] user-view.inc.php
[edit]
[-] plugin-instance.inc.php
[edit]
[-] plugin-add.inc.php
[edit]
[-] login.tpl.php
[edit]
[-] department.inc.php
[edit]
[-] syslogs.inc.php
[edit]
[-] template.inc.php
[edit]
[-] category.inc.php
[edit]
[-] ticket-relations.inc.php
[edit]
[-] header.inc.php
[edit]
[-] schedule.inc.php
[edit]
[-] faq-view.inc.php
[edit]
[-] settings-alerts.inc.php
[edit]
[-] settings-users.inc.php
[edit]
[-] pages.inc.php
[edit]
[-] slaplans.inc.php
[edit]
[-] team.inc.php
[edit]
[-] helptopics.inc.php
[edit]
[-] role.inc.php
[edit]
[-] settings-pages.inc.php
[edit]
[-] users.inc.php
[edit]
[-] faq-category.inc.php
[edit]
[-] orgs.inc.php
[edit]
[-] pwreset.sent.php
[edit]
[-] settings-agents.inc.php
[edit]
[-] settings-emails.inc.php
[edit]
[+]
osta
[-] templates.inc.php
[edit]
[-] theme.inc.php
[edit]
[-] helptopic.inc.php
[edit]
[-] profile.inc.php
[edit]
[-] email.inc.php
[edit]
[-] ticket-open.inc.php
[edit]
[-] roles.inc.php
[edit]
[-] ticket-view.inc.php
[edit]
[-] schedules.inc.php
[edit]
[-] departments.inc.php
[edit]
[-] pwreset.login.php
[edit]
[-] filter.inc.php
[edit]
[-] queues-ticket.inc.php
[edit]
[-] plugin.inc.php
[edit]
[-] slaplan.inc.php
[edit]
[-] filters.inc.php
[edit]
[-] dashboard.inc.php
[edit]
[-] pwreset.php
[edit]
[-] tpl.inc.php
[edit]
[-] cannedresponse.inc.php
[edit]
[-] dynamic-form.inc.php
[edit]
[-] teams.inc.php
[edit]
[-] dynamic-lists.inc.php
[edit]
[-] tasks.inc.php
[edit]
[-] banrule.inc.php
[edit]
[-] ticket-edit.inc.php
[edit]
[-] settings-kb.inc.php
[edit]
[-] plugins.inc.php
[edit]
[-] directory.inc.php
[edit]
[-] apikeys.inc.php
[edit]
[-] org-view.inc.php
[edit]
[-] system.inc.php
[edit]
[+]
templates
[-] staffmembers.inc.php
[edit]
[-] banlist.inc.php
[edit]
[-] footer.inc.php
[edit]
[-] settings-tasks.inc.php
[edit]
[-] apikey.inc.php
[edit]
[-] queue.inc.php
[edit]
[-] .htaccess.disabled
[edit]