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


PHP parametersMenus函数代码示例

本文整理汇总了PHP中parametersMenus函数的典型用法代码示例。如果您正苦于以下问题:PHP parametersMenus函数的具体用法?PHP parametersMenus怎么用?PHP parametersMenus使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: session_start

session_start();
if ($_SESSION['GL_USER']['SESSIONID'] != session_id()) {
    header("location:dbuser.php?do=logout");
}
if ($_SESSION['GL_USER']['DROIT']['par_aff']['VISIBLE'] != 1) {
    header("location:accessinterdit.php?selectedTab=home");
}
require_once '../lib/phpfuncLib.php';
//All commun functions
require_once 'menus.php';
require_once 'funcaffectation.php';
//Top Menu
$selectedTab = $_GET['selectedTab'];
$menu = topMenus($selectedTab, $_SESSION['GL_USER']['DROIT']);
//Left Menu
$leftMenu = parametersMenus($selectedTab, $_SESSION['GL_USER']['DROIT']);
//DOIT MAJ
$droitMAJ = $_SESSION['GL_USER']['DROIT']['par_uti'];
//Rsest
if (isset($_GET['rst']) && $_GET['rst'] == 1) {
    $_SESSION['WHERE'] = "";
}
isset($_GET['page']) ? $page = $_GET['page'] : ($page = 1);
isset($_POST['viewLength']) ? $_SESSION['GL_USER']['ELEMENT'] = $_POST['viewLength'] : '';
//
if (isset($_GET['do']) && $_GET['do'] == "search") {
    $where = "";
    $_SESSION['WHERE'] = "";
    isset($_POST['personnel']) && $_POST['personnel'] != '0' ? $where .= "compte.NUM_MLLE LIKE '" . addslashes(trim($_POST['personnel'])) . "' AND " : ($where .= "");
    isset($_POST['compte']) && $_POST['compte'] != '0' ? $where .= "compte.LOGIN \t LIKE '" . addslashes(trim($_POST['compte'])) . "' AND " : ($where .= "");
    if ($where != '') {
开发者ID:benleibert,项目名称:channel-software,代码行数:31,代码来源:affectation.php

示例2: parametersMenus

window.focus();
</script>

  </td>
  </tr>
</table>
<table width="100%" height="80%"  border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td height="80%" align="left" valign="top"><table width="200" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="5" height="48">&nbsp;</td>
        <td width="180" align="left" valign="top"><table width="200" border="0" cellpadding="1" cellspacing="0">
          <tr>
            <td width="180"><?php 
$selectedTab = $_GET['selectedTab'];
echo parametersMenus($selectedTab, $droit);
?>
</td>
          </tr>
        </table></td>
      </tr>
    </table></td>
    <td width="85%" height="80%" align="left" valign="top"><table width="100%"  border="0" cellspacing="0" cellpadding="2">
      <tr>
        <td><table width="100%" border="0" align="left" cellpadding="1" cellspacing="1">
          <tr>
            <td width="43"  bgcolor="#FFCC66" class="leftHeader"><?php 
echo getlang(106);
?>
 &rarr; Les découpages GL_USERistratives</td>
          </tr>
开发者ID:benleibert,项目名称:channel-software,代码行数:31,代码来源:decoupage.php


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