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


PHP Container::getModels方法代碼示例

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


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

示例1: inject

 private function inject(Container $model, $arg)
 {
     $sitemap = '';
     foreach ($model->getModels() as $key => $value) {
         $sitemap .= $this->visit($value, $arg . '/' . $key, false);
     }
     return '<div class="sitemap-sub-level"><ul>' . $sitemap . '</ul>';
 }
開發者ID:phgamper,項目名稱:markdown_blog,代碼行數:8,代碼來源:SitemapView.php

示例2: container

 public function container(Container $model, $arg, $bool)
 {
     $string = '';
     foreach ($model->getModels() as $m) {
         $string .= $this->visit($m, $arg, $bool);
     }
     return $string;
 }
開發者ID:phgamper,項目名稱:markdown_blog,代碼行數:8,代碼來源:OnePager.php

示例3: container

 /**
  *
  * @param Collection|Container $model
  * @param int $arg
  * @return string
  */
 public function container(Container $model, $arg)
 {
     $sitemap = '';
     foreach ($model->getModels() as $key => $value) {
         $sitemap .= $this->visit($value, $arg . '/' . $key);
     }
     return '<li><p><a href="' . $arg . '">' . $model->config['name'] . '</a></p><div class="sitemap-sub-level"><ul>' . $sitemap . '</ul></div></li>';
 }
開發者ID:Stephan123,項目名稱:markdown_blog,代碼行數:14,代碼來源:SitemapView.php

示例4: container

 /**
  *
  * @param Collection|Container $model
  * @param int $arg
  * @return string
  */
 public function container(Container $model, $arg)
 {
     $active = $this->active($arg);
     $dropdown = '';
     foreach ($model->getModels() as $key => $value) {
         $dropdown .= $this->visit($value, $arg . '/' . $key);
     }
     $dropdown = '<ul class="dropdown-menu" role="menu">' . $dropdown . '</ul>';
     return '<li ' . $active . '><a href="' . $arg . '" class="dropdown-toggle" data-toggle="dropdown">' . $model->config['name'] . '<b class="caret"></b></a>' . $dropdown . '</li>';
 }
開發者ID:Stephan123,項目名稱:markdown_blog,代碼行數:16,代碼來源:NavigationView.php

示例5: container

 /**
  *
  * @param Collection|Container $model
  * @param int $arg
  * @return string
  */
 public function container(Container $model, $arg)
 {
     $string = '';
     $cols = isset($model->config['columns']) && $model->config['columns'] > 0 ? $model->config['columns'] : 1;
     $width = floor(12 / $cols);
     $break = $arg;
     $it = new ArrayIterator($model->getModels());
     $item_left = $it->count();
     while ($it->valid()) {
         $column = '';
         $break += ceil($item_left / $cols);
         while ($it->valid() && $arg < $break) {
             $column .= '<div class="row"><div class="col-md-12 list-item">' . $this->visit($it->current(), $arg) . '</div></div>';
             $it->next();
             $item_left--;
             $arg++;
         }
         $cols--;
         $string .= '<div class="col-md-' . $width . ' list-column">' . $column . '</div>';
     }
     return '<div class="row list">' . $string . '</div>';
 }
開發者ID:Stephan123,項目名稱:markdown_blog,代碼行數:28,代碼來源:View.php


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