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


PHP View::widget方法代碼示例

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


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

示例1: indexAction

 function indexAction()
 {
     $result = DB::select()->from($this->tablename)->order_by('id')->find_all();
     $this->_filter = View::widget(array(), 'Filter/Pages');
     $this->_toolbar = View::widget(array(), 'Toolbar/List');
     $this->_content = View::tpl(array('result' => $result, 'tpl_folder' => $this->tpl_folder, 'tablename' => $this->tablename), $this->tpl_folder . '/Index');
 }
開發者ID:procivam,項目名稱:hochu-bilet-v3,代碼行數:7,代碼來源:MailTemplates.php

示例2: headerNew

 public function headerNew($array = array())
 {
     $count = 0;
     $result = DB::select(array(DB::expr('COUNT(id)'), 'count'))->from('log')->where('deleted', '=', 0)->as_object()->execute()->current();
     if ($result) {
         $count = $result->count;
     }
     $result = DB::select()->from('log')->where('deleted', '=', 0)->limit(7)->as_object()->execute();
     return $this->_data['headerNew'] = View::widget(array('count' => $count, 'result' => $result), 'HeaderNew');
 }
開發者ID:procivam,項目名稱:hochu-bilet-v3,代碼行數:10,代碼來源:Widgets.php

示例3: date

        ?>
" target="_blank"><?php 
        echo $obj->alias;
        ?>
</a></td>
		                <td width="10%"><?php 
        echo date('d.m.Y', $obj->event_date);
        ?>
</td>
		                <td><?php 
        echo $obj->main_show ? '<span style="color: green;">Да</span>' : '<span style="color: red">Нет</span>';
        ?>
</td>
		                <td width="45" valign="top" class="icon-column status-column">
		                    <?php 
        echo \Core\View::widget(array('status' => $obj->status, 'id' => $obj->id), 'StatusList');
        ?>
		                </td>
		                <td class="nav-column">
		                    <ul class="table-controls">
		                        <li>
		                            <a class="bs-tooltip dropdownToggle" href="javascript:void(0);" title="Управление"><i class="fa-cog size14"></i></a>
		                            <ul class="dropdownMenu pull-right">
										<?php 
        if (Core\User::caccess() == 'edit' or Core\User::caccess() == 'view') {
            ?>
											<li>
												<a href="/backend/<?php 
            echo \Core\Route::controller();
            ?>
/edit/<?php 
開發者ID:procivam,項目名稱:hochu-bilet-v3,代碼行數:31,代碼來源:Menu.php


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