当前位置: 首页>>代码示例>>PHP>>正文


PHP Self::all方法代码示例

本文整理汇总了PHP中Self::all方法的典型用法代码示例。如果您正苦于以下问题:PHP Self::all方法的具体用法?PHP Self::all怎么用?PHP Self::all使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Self的用法示例。


在下文中一共展示了Self::all方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: availableTenants

 /**
  * Show a list of all available tenants
  * @return [array] list of tenants
  */
 public static function availableTenants()
 {
     $tenants = Self::all();
     $result = [];
     foreach ($tenants as $tenant) {
         $result[$tenant->id] = $tenant->name;
     }
     return $result;
 }
开发者ID:aboustayyef,项目名称:tarzanRent,代码行数:13,代码来源:Tenant.php

示例2: availableProperties

 public static function availableProperties()
 {
     $properties = Self::all();
     $result = [];
     foreach ($properties as $property) {
         $result[$property->id] = $property->description;
     }
     return $result;
 }
开发者ID:aboustayyef,项目名称:tarzanRent,代码行数:9,代码来源:Property.php

示例3: readAll

 /**
  * 
  */
 public static function readAll()
 {
     $results = Self::all();
     #formatting the result to json
     $arrData = array();
     foreach ($results as $result) {
         $arrData['data'][] = array('id' => $result->id, 'name' => $result->option);
     }
     return $arrData;
 }
开发者ID:Charu91,项目名称:Wowtables1,代码行数:13,代码来源:Cuisine.php

示例4: getAll

 /**
  * return all online players as an array
  *
  * @return array 
  */
 public static function getAll($extra = null)
 {
     $rows = Self::all();
     if ($rows->count() == 0) {
         return false;
     }
     $return = collect([]);
     foreach ($rows as $row) {
         $char = \distro\tfs10\Character::find(playerIdToName($row['player_id']));
         $item = collect(['name' => $char->getName(), 'vocation' => $char->getVocation(), 'level' => $char->getLevel()]);
         if (!is_null($extra)) {
             foreach ($extra as $key) {
                 $item->put($key, $char->{$key});
             }
         }
         $return->push($item->all());
     }
     return $return;
 }
开发者ID:Codex-NG,项目名称:cornexaac,代码行数:24,代码来源:OnlineEloquent.php

示例5: getAll

 function getAll()
 {
     $query = Self::all();
     return $query->toArray();
 }
开发者ID:Charu91,项目名称:Wowtables1,代码行数:5,代码来源:CodeModel.php

示例6: allBlogs

 public function allBlogs()
 {
     return Self::all()->toArray();
 }
开发者ID:zwarthoorn,项目名称:blog,代码行数:4,代码来源:Blog.php

示例7: getData

 public static function getData()
 {
     $results = Self::all();
     return $results;
 }
开发者ID:AummyKa,项目名称:laravel_registration,代码行数:5,代码来源:User.php


注:本文中的Self::all方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。