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


PHP ViewList::listViewProcess方法代碼示例

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


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

示例1: testlistViewProcess

 public function testlistViewProcess()
 {
     //execute the method and call methods to get the required child objects set. it should return some html.
     $view = new ViewList();
     $view->seed = new User();
     $view->prepareSearchForm();
     $view->preDisplay();
     ob_start();
     $view->listViewProcess();
     $renderedContent = ob_get_contents();
     ob_end_clean();
     $this->assertGreaterThan(0, strlen($renderedContent));
 }
開發者ID:sacredwebsite,項目名稱:SuiteCRM,代碼行數:13,代碼來源:view.listTest.php

示例2: listViewProcess

 function listViewProcess()
 {
     parent::listViewProcess();
 }
開發者ID:sunmo,項目名稱:snowlotus,代碼行數:4,代碼來源:view.list.php

示例3: listViewProcess

 /**
  * @see ViewList::listViewProcess()
  */
 function listViewProcess()
 {
     parent::listViewProcess();
     global $app_strings;
     echo "<form action=\"index.php\" method=\"post\" name=\"EmailManDelivery\" id=\"form\">\n\t\t\t<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" class='actionsContainer'>\n\t\t\t\t<tr><td style=\"padding-bottom: 2px;\">\n                        <input type=\"hidden\" name=\"module\" value=\"EmailMan\">\n                        <input type=\"hidden\" name=\"action\">\n                        <input type=\"hidden\" name=\"return_module\">\n                        <input type=\"hidden\" name=\"return_action\">\n                        <input type=\"hidden\" name=\"manual\" value=\"true\">\n                        <input\ttitle=\"" . $app_strings['LBL_CAMPAIGNS_SEND_QUEUED'] . "\" \n                                accessKey=\"" . $app_strings['LBL_SAVE_BUTTON_KEY'] . "\" class=\"button\" \n                                onclick=\"this.form.return_module.value='EmailMan'; this.form.return_action.value='index'; this.form.action.value='EmailManDelivery'\" \n                                type=\"submit\" name=\"Send\" value=\"" . $app_strings['LBL_CAMPAIGNS_SEND_QUEUED'] . "\">\n            </td></tr></table></form>";
 }
開發者ID:aldridged,項目名稱:gtg-sugar,代碼行數:9,代碼來源:view.list.php


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