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


PHP main::LoadSection方法代碼示例

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


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

示例1: adminconfig

    public function adminconfig()
    {
        global $user;
        $cfg = new config();
        $main = new main();
        $text = '
				<table border="0" align="center" width="324" cellpadding="0" cellspacing="0">
				 <tr id="tr1">
				  <td class="block" width="100" align="left" valign="top">Приоритет:</td>
				  <td width="136px">
				   <div id="select_1">
				    <select class="input" id="priority" onchange="ViewImgOptions(1)" style="border:0px;width:100%;">
				     <option value="-1">Добавить</option>
				     <option DISABLED SELECTED>--</option>' . $main->LoadPriority(0, 0, "color") . '
				    </select>
				   </div>
				   <div id="enter_1" style="display:none;">
					<input id="input_1" type="text" value="Название" style="width:100%;" onFocus="if(this.value==\'Название\')this.value=\'\';" onBlur="if(this.value==\'\')this.value=\'Название\';"><br>
					<input id="input_11" type="text" value="Цвет" style="width:100%;" onFocus="if(this.value==\'Цвет\')this.value=\'\';" onBlur="if(this.value==\'\')this.value=\'Цвет\';">
				   </div>
				   </td>
				  <td align="left" width="88" valign="top"><div style="display:none;" id="img_1"></div></td>
				 </tr>
				 <tr id="tr2">
				  <td class="block" width="100" align="left">Тип:</td>
				  <td align="right">
				   <div id="select_2">
				    <select class="input" id="type" onchange="ViewImgOptions(2)" style="border:0px;width:100%;">
				     <option value="-1">Добавить</option>
				     <option DISABLED SELECTED>--</option>' . $main->LoadSection() . '
				    </select>
				   </div>
				   <div id="enter_2" style="display:none;">
					<input id="input_2" type="text" value="Название" style="width:100%;" onFocus="if(this.value==\'Название\')this.value=\'\';" onBlur="if(this.value==\'\')this.value=\'Название\';">
				   </div>
				  </td>
				  <td align="left" width="88" valign="top"><div style="display:none;" id="img_2"></div></td>
				 </tr>
				 <tr id="tr3">
				  <td class="block" width="100" align="left">Подтип:</td>
				  <td align="right">
				   <div id="select_3">
				    <select class="input" id="subtype" onchange="ViewImgOptions(3)" style="border:0px;width:100%;">
				     <option value="-1">Добавить</option>
				     <option DISABLED SELECTED>--</option>' . $main->LoadSubType() . '
				    </select>
				   </div>
				   <div id="enter_3" style="display:none;">
					<input id="input_3" type="text" value="Название" style="width:100%;" onFocus="if(this.value==\'Название\')this.value=\'\';" onBlur="if(this.value==\'\')this.value=\'Название\';">
				   </div>
				  </td>
				  <td align="left" width="88" valign="top"><div style="display:none;" id="img_3"></div></td>
				 </tr>
				 <tr id="tr4">
				  <td class="block" width="100" align="left">Статус:</td>
				  <td align="right">
				   <div id="select_4">
				    <select class="input" id="status" onchange="ViewImgOptions(4)" style="border:0px;width:100%;">
				     <option value="-1">Добавить</option>
				     <option DISABLED SELECTED>--</option>' . $main->LoadStatus() . '
				    </select>
				   </div>
				   <div id="enter_4" style="display:none;">
					<input id="input_4" type="text" value="Название" style="width:100%;" onFocus="if(this.value==\'Название\')this.value=\'\';" onBlur="if(this.value==\'\')this.value=\'Название\';">
				   </div>
				  </td>
				  <td align="left" width="88" valign="top"><div style="display:none;" id="img_4"></div></td>
				 </tr>
				</table>';
        $this->block($text);
    }
開發者ID:Hantet,項目名稱:BugTracker,代碼行數:71,代碼來源:html.php


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