当前位置: 首页>>代码示例>>PHP>>正文


PHP ErrorHandler::getNotice方法代码示例

本文整理汇总了PHP中ErrorHandler::getNotice方法的典型用法代码示例。如果您正苦于以下问题:PHP ErrorHandler::getNotice方法的具体用法?PHP ErrorHandler::getNotice怎么用?PHP ErrorHandler::getNotice使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ErrorHandler的用法示例。


在下文中一共展示了ErrorHandler::getNotice方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: dirname

<?php

require_once dirname(__FILE__) . '/../../../adminData.php';
?>
<div id='adminWrapper'>
  <div id='createMenu'>
  <?php 
echo ErrorHandler::getNotice('menu');
?>
    <h3>Cadastrar Menu</h3>
    <div id='newMenuData'>
      Nome:
      <p><input type='text' id='StName' name='StName' class='inputCombo' /></p>
      Endere&ccedil;o:
      <p><input type='text' id='StAddress' name='StAddress' class='inputCombo' /></p>
      <p>
        <button class='button' onclick='Admin.insertMenu();'>Cadastrar</button>
        <button class='button'>Limpar</button>
      </p>
    </div>
  </div>
  <div id='manageMenu' class='Left'>
      <h3>Gerenciar Menus</h3>
      <table class='tableTickets'>
        <thead>
          <th>Menus Cadastrados</th>
          <th colspan='2'>A&ccedil;&otilde;es</th>
        </thead>
        <tbody>
          <?php 
echo TemplateHandler::showMenus($ArMenus);
开发者ID:ashton,项目名称:f1desk,代码行数:31,代码来源:manageMenus.php

示例2: require_once

<?php
  require_once( dirname(__FILE__) . '/../../ticketData.php' );
  /*default language*/
  handleLanguage(__FILE__);
  #
  # join arrow's ID and Content's ID with this UID
  #
  $uid = uniqid();

  if ($isVisible) :
?>

    <!--[ERROR/OK BOX]-->
    <?= ErrorHandler::getNotice('ticket'); ?>
    <!--[ERROR/OK BOX]-->

    <!--[TICKET HEADER]-->
    <div id='ticketHeader'>
      <div id="ticketTitle">
      <?if(!$preview):?>
        <img id='reloadHeader' class='menuRefresh Right' onclick='Ticket.refreshTicket("<?=$IDTicket?>", "<?=$IDDepartment?>")' src='<?= TEMPLATEDIR ?>images/btn_reload.png' alt='Reload' />
      <?endif;?>
      	<img alt="Ticket" id='arrowHeader<?=$uid?>' src="<?= TEMPLATEDIR ?>images/arrow_hide.gif" onclick='baseActions.toogleArrow( this.id, "ticketContent<?=$uid?>")' class='menuArrow'/>
      	<span><?= $StTitle ?></span>
      </div>

      <div id="ticketContent<?=$uid?>">
      	<table class='tableTickets'>
          <thead>
            <tr>
              <th><?=TICKET_HEADER_ID?></th>
开发者ID:ashton,项目名称:f1desk,代码行数:31,代码来源:ticket.php

示例3: dirname

<?php

require_once dirname(__FILE__) . '/../../../adminData.php';
handleLanguage(__FILE__);
?>
<div id="adminWrapper">
  <?php 
echo ErrorHandler::getNotice('department');
?>
  <div id="insertDepartment">
    <h3><?php 
echo INSERT_DEPARTMENT;
?>
</h3>
    <form name="insertDepartment" id="insertDepartmentForm" onsubmit="return false;">
      <?php 
echo NAME;
?>
:
      <p>
        <input type="text" name="name" class="inputCombo" />
      </p>
      
      <?php 
echo DESCRIPTION;
?>
:
      <p>
        <input type="text" name="description" class="inputCombo" />
      </p>
      
开发者ID:ashton,项目名称:f1desk,代码行数:30,代码来源:manageDepartments.php

示例4:

          </button>
          <button class="button" onclick="gID('manageEditLanguages').className += ' Invisible';">
            <?php 
echo CLEAR;
?>
          </button>
        </p>
      </form>
    </div>
  </div>
  <!--[/LANGUAGE MANAGER]-->
  
  <!--[OPTIONS MANAGER]-->
  <div id="content1" style="width:100%;padding-top:215px;">
    <?php 
echo ErrorHandler::getNotice('option');
?>
    <div id='manageOptions' class='Left'>
      <h3><?php 
echo MANAGE_PREFERENCES;
?>
</h3>
      <table class='tableTickets'>
        <thead>
          <th><?php 
echo OPTION;
?>
</th>
          <th><?php 
echo VALUE;
?>
开发者ID:ashton,项目名称:f1desk,代码行数:31,代码来源:preferences.php

示例5: dirname

<?php

require_once dirname(__FILE__) . '/../../../adminData.php';
handleLanguage(__FILE__);
?>
<div id="adminWrapper">
  <?php 
echo ErrorHandler::getNotice('unit');
?>
  <div id="insertUnit">
    <h3><?php 
echo INSERT_UNIT;
?>
</h3>
    <form name="insertUnitForm" id="insertUnitForm" onsubmit="return false;">
      <?php 
echo NAME;
?>
:
      <p>
        <input type="text" name="name" class="inputCombo" />
      </p>
      
      <p>
        <table class="tableTickets">
          <thead>
            <th><?php 
echo PERMISSION_TO;
?>
</th>
            <th></th>
开发者ID:ashton,项目名称:f1desk,代码行数:31,代码来源:manageUnits.php

示例6: dirname

<?require_once( dirname(__FILE__) . '/../../ticketData.php' );?>

<!--[ERROR/OK BOX]-->
  <?php 
echo ErrorHandler::getNotice('ticket');
?>
<!--[ERROR/OK BOX]-->

<div id="previewAnswer">
  <h3>Sua Resposta</h3>
  <div class="message<?php 
echo $_POST['StMessageType'] == 'INTERNAL' ? 'Internal' : '';
?>
">
    <?$TxMessagePreview = (isset($TxMessagePreview))?nl2br($TxMessagePreview):' -- '?>
    <?php 
echo $TxMessagePreview;
?>
  </div>
</div>
开发者ID:ashton,项目名称:f1desk,代码行数:20,代码来源:ticketPreviewAnswer.php

示例7: dirname

<?php

require_once dirname(__FILE__) . '/../../../adminData.php';
handleLanguage(__FILE__);
?>
<div id='adminWrapper'>
  <?php 
echo ErrorHandler::getNotice('template');
?>
  <div id="manageTemplates">
    <h3><?php 
echo ADD_TEMPLATE;
?>
</h3>
    <form onsubmit="return false;" id="templateForm">
        <?php 
echo TEMPLATE_NAME;
?>
:
      <p>
        <input type="text" name="StName" class="inputCombo">
      </p>
        <?php 
echo TEMPLATE_PATH;
?>
:
      <p>
        <input type="text" name="StPath" class="inputCombo">
      </p>
        <?php 
echo THUMBNAIL;
开发者ID:ashton,项目名称:f1desk,代码行数:31,代码来源:manageTemplates.php


注:本文中的ErrorHandler::getNotice方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。