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


PHP Banner::all方法代碼示例

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


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

示例1: create

 /**
  * Show the form for creating a new resource.
  *
  * @return Response
  */
 public function create()
 {
     //
     $banner = Banner::all();
     View::share('selected_option', 'Agregar Banner');
     return View::make('banner.add')->with('banner', $banner);
 }
開發者ID:abrahammontas,項目名稱:Supplements-online-store,代碼行數:12,代碼來源:BannerController.php

示例2: Index

 public function Index()
 {
     //
     $banner = Banner::all();
     return View::make('views/index')->with("banner", $banner);
 }
開發者ID:abrahammontas,項目名稱:Supplements-online-store,代碼行數:6,代碼來源:HomeController.php

示例3: foreach

'>更多關於宙思 »</a>
</nav>

<article class='b1'>
  <div class='l'>
    <div>web design</div>
    <div>graphic design</div>
    <div>photography</div>
    <div>design project</div>
    <p>宙思設計團隊,服務廣泛,凡舉網頁、平麵、包裝、印刷及攝影皆可製作。</p>
    <p>我們擁有各領域的人才,希望能將您的需求,以最完整的服務與最精湛的設計呈現給您。</p>
  </div>
  <div class='r'>
    <div id='banners'>
<?php 
foreach (Banner::all(array('order' => 'sort DESC', 'conditions' => array('is_enabled = ?', Banner::ENABLE_YES))) as $banner) {
    ?>
        <figure>
          <img src='<?php 
    echo $banner->cover->url('800w');
    ?>
' alt='<?php 
    echo $banner->title;
    ?>
' />
          <figcaption>
            <h3><?php 
    echo $banner->title;
    ?>
</h3>
            <p><?php 
開發者ID:comdan66,項目名稱:zeusdesign,代碼行數:31,代碼來源:content.php


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