當前位置: 首頁>>代碼示例>>PHP>>正文


PHP event::outputEventDropdown方法代碼示例

本文整理匯總了PHP中event::outputEventDropdown方法的典型用法代碼示例。如果您正苦於以下問題:PHP event::outputEventDropdown方法的具體用法?PHP event::outputEventDropdown怎麽用?PHP event::outputEventDropdown使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在event的用法示例。


在下文中一共展示了event::outputEventDropdown方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: OutputLogoImages

 public static function OutputLogoImages()
 {
     $stdout = "";
     // ------------------------------------------------------------------------
     // Output drop-down list
     // ------------------------------------------------------------------------
     $stdout .= event::outputEventDropdown(array(), "logotype images", "", true);
     // ------------------------------------------------------------------------
     if (!isset($_REQUEST["confid"]) || empty($_REQUEST["confid"])) {
         return $stdout;
     }
     // ------------------------------------------------------------------------
     // GPC
     // ------------------------------------------------------------------------
     // Must be after call to event::outputEventDropdown() where $GLOBALS["confid"] is set.
     if (!isset($GLOBALS["confid"])) {
         functions::gpc_declare_input("confid", array(), false);
     }
     // Enforce only single event
     $confid = is_array($GLOBALS["confid"]) ? current($GLOBALS["confid"]) : $GLOBALS["confid"];
     // ------------------------------------------------------------------------
     // Obtain data
     // ------------------------------------------------------------------------
     $event = self::getEventByAgendaid($confid);
     if (!is_array($event)) {
         return $stdout . PADDED_HR . "<div class='box error padding background'>" . "<strong>The event you selected does not exist</strong>. Please select another event." . "</div>\r\n";
     }
     $img_path[103] = $event["image"];
     $img_path[206] = str_replace($event["subpath"], "206/" . $event["subpath"] . "_206", $event["image"]);
     foreach ($img_path as $key => $path) {
         $img[$key] = file_exists(INCLEVEL . $path) ? "<p><a href='" . $path . "'><strong>" . $path . "</strong></a></p>\r\n" . "<p><a href='" . $path . "'><img src='" . $path . "' alt=''></a></p>\r\n" : "<em>This file does not exist</em>";
     }
     $stdout .= PADDED_HR . "<h2 class='bottommargin'>" . $event["title"] . "</h2>\r\n" . "<div class='col c1of2'>\r\n" . "  <h4>Logo size: 103 x 103 px</h4>\r\n" . "  <p>" . $img[103] . "</p>\r\n" . "</div> <div class='col c2of2 divider'>\r\n" . "  <h4>Logo size: 206 x 206 px</h4>\r\n" . "  <p>" . $img[206] . "</p>\r\n" . "</div><div style='clear:both'><br></div>\r\n";
     return $stdout;
 }
開發者ID:,項目名稱:,代碼行數:35,代碼來源:


注:本文中的event::outputEventDropdown方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。