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


PHP Options::kioskMode方法代码示例

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


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

示例1: sendData

 public function sendData()
 {
     if (!Options::kioskMode()) {
         $this->sendContentType(self::CONTENT_TYPE_TEXT_PLAIN);
         $download = $this->getRequestDownload() != 0;
         if ($download) {
             $this->sendContentDisposition("logs.txt");
         }
         $this->sendLogs();
     } else {
         $this->sendStatusAndExit(self::STATUS_FORBIDDEN, "Kiosk mode enabled");
     }
 }
开发者ID:TheBillPleaseZA,项目名称:phplogmon,代码行数:13,代码来源:WebStreamLogs.class.php

示例2: printUserDetails

 private function printUserDetails()
 {
     $dbh = $this->dbh();
     $typeId = $this->getSessionTypeFilter();
     $loghostId = $this->getSessionLoghostFilter();
     $networkId = $this->getSessionNetworkFilter();
     $serviceId = $this->getSessionServiceFilter();
     $userId = $this->getRequestUser();
     $select = $dbh->prepare("SELECT a.id, a.user, a.statusid " . "FROM user a " . "WHERE a.id = ?");
     $select->bindParam(1, $userId, PDO::PARAM_STR);
     $select->execute();
     $select->bindColumn(1, $userId, PDO::PARAM_STR);
     $select->bindColumn(2, $user, PDO::PARAM_STR);
     $select->bindColumn(3, $statusId, PDO::PARAM_STR);
     if ($select->fetch(PDO::FETCH_BOUND) !== false) {
         $l12n = $this->l12n();
         $this->beginDetailsSection();
         $this->beginDetails1();
         $this->printImgUserStatus("icon128", $statusId);
         $this->endDetails1();
         $this->beginDetails2();
         $this->beginDetailsTable();
         $this->beginDetailsTableElement($l12n->t("User"));
         if (!Options::kioskMode()) {
             Html::out($user);
         } else {
             Html::out("********");
         }
         $this->endDetailsTableElement();
         $this->beginDetailsTableElement($l12n->t("Logs"));
         $this->printLogLinks("icon16", $typeId, $loghostId, $networkId, $serviceId, "*", "*", $userId);
         $this->endDetailsTableElement();
         $this->endDetailsTable();
         $this->endDetails2();
         $this->endDetailsSection();
     }
 }
开发者ID:TheBillPleaseZA,项目名称:phplogmon,代码行数:37,代码来源:WebViewUser.class.php

示例3: printEventUser

 protected function printEventUser($userId, $user, $statusId, $typeId, $loghostId, $networkId, $serviceId)
 {
     if ($user != "") {
         print "<td><a href=\"?cmd=viewuser&amp;user={$userId}&amp;typefilter={$typeId}&amp;loghostfilter={$loghostId}&amp;networkfilter={$networkId}&amp;servicefilter={$serviceId}\">";
         $this->printImgUserStatus("icon16", $statusId);
         if (!Options::kioskMode()) {
             Html::out(" {$user}");
         } else {
             Html::out(" ********");
         }
         print "</a></td>";
     } else {
         print "<td class=\"center\">";
         Html::out("-");
         print "</td>";
     }
 }
开发者ID:TheBillPleaseZA,项目名称:phplogmon,代码行数:17,代码来源:WebView.class.php


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