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


PHP Collection::getValues方法代码示例

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


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

示例1: getRoles

 public function getRoles()
 {
     $roles = array();
     foreach ($this->roles->getValues() as $roleObject) {
         $roles[] = $roleObject->getName();
     }
     return $roles;
 }
开发者ID:neuweb,项目名称:idauth,代码行数:8,代码来源:User.php

示例2:

 function it_applies_choice_filter_on_datasource_for_collection_value(FilterDatasourceAdapterInterface $datasource, Collection $collection, $utility)
 {
     $collection->count()->willReturn(2);
     $collection->getValues()->willReturn(['foo', 'bar']);
     $utility->applyFilter($datasource, 'data_name_key', 'IN', ['foo', 'bar'])->shouldBeCalled();
     $this->apply($datasource, ['value' => $collection, 'type' => AjaxChoiceFilterType::TYPE_CONTAINS]);
 }
开发者ID:alexisfroger,项目名称:pim-community-dev,代码行数:7,代码来源:ChoiceFilterSpec.php

示例3: testGetValues

 public function testGetValues()
 {
     $this->_coll[] = 'one';
     $this->_coll[] = 'two';
     $this->assertEquals(array('one', 'two'), $this->_coll->getValues());
 }
开发者ID:TuxCoffeeCorner,项目名称:tcc,代码行数:6,代码来源:CollectionTest.php

示例4: getValues

 /**
  * {@inheritdoc}
  */
 public function getValues()
 {
     $this->initialize();
     return $this->coll->getValues();
 }
开发者ID:dracony,项目名称:forked-php-orm-benchmark,代码行数:8,代码来源:PersistentCollection.php

示例5: getRoles

 /**
  * Get role.
  *
  * @return array
  */
 public function getRoles()
 {
     return $this->roles->getValues();
 }
开发者ID:xelax90,项目名称:skeleton-module,代码行数:9,代码来源:User.php

示例6: getUsers

 /**
  * Get user list from group
  * @return array
  */
 public function getUsers()
 {
     return $this->users->getValues();
 }
开发者ID:opsway,项目名称:tocat-opsdesk-platform,代码行数:8,代码来源:Role.php

示例7: getOptions

 /**
  * Get options.
  *
  * @return array
  */
 public function getOptions($ac = false)
 {
     return $ac ? $this->options : $this->options->getValues();
 }
开发者ID:arstropica,项目名称:zf2-dashboard,代码行数:9,代码来源:Api.php

示例8: getConsolidatedAccountsCollection

 /**
  * Get consolidated accounts collection
  *
  * @return ConsolidatedAccountsCollection
  */
 public function getConsolidatedAccountsCollection()
 {
     $elements = array_merge(array($this), $this->consolidatedAccounts->getValues());
     return new ConsolidatedAccountsCollection($elements);
 }
开发者ID:junjinZ,项目名称:wealthbot,代码行数:10,代码来源:ClientAccount.php

示例9: buildOrderFulfillmentsData

 public static function buildOrderFulfillmentsData(Collection $collection)
 {
     return array_map(function (OrderFulfillment $fulfillment) {
         return $fulfillment->buildOrderFulfillmentData();
     }, $collection->getValues());
 }
开发者ID:antimattr,项目名称:merchantry,代码行数:6,代码来源:OrderFulfillmentRequestHandler.php

示例10: getApiSettings

 /**
  * Get API Settings.
  *
  * @return array
  */
 public function getApiSettings()
 {
     return $this->apiSettings->getValues();
 }
开发者ID:arstropica,项目名称:zf2-dashboard,代码行数:9,代码来源:Account.php

示例11: getAccounts

 /**
  * Get account.
  *
  * @return array
  */
 public function getAccounts()
 {
     return $this->accounts->getValues();
 }
开发者ID:arstropica,项目名称:zf2-dashboard,代码行数:9,代码来源:User.php

示例12: getEvents

 /**
  *
  * @param bool $ac        	
  *
  * @return Collection $events
  */
 public function getEvents($ac = false)
 {
     return $ac ? $this->events : $this->events->getValues();
 }
开发者ID:arstropica,项目名称:zf2-dashboard,代码行数:10,代码来源:Report.php

示例13: getValues

 /**
  * {@inheritdoc}
  */
 public function getValues()
 {
     return $this->inner->getValues();
 }
开发者ID:peterkrejci,项目名称:music-collection,代码行数:7,代码来源:ReadOnlyCollectionWrapper.php

示例14: getValues

 /**
  * {@inheritDoc}
  */
 public function getValues()
 {
     return $this->collection->getValues();
 }
开发者ID:cross-solution,项目名称:yawik,代码行数:7,代码来源:IdentityWrapper.php

示例15: testGetValues

 /**
  * @dataProvider provideCollection
  */
 public function testGetValues(Collection $coll, array $elements)
 {
     $this->assertSame(array_values($elements), $coll->getValues());
 }
开发者ID:malarzm,项目名称:collections,代码行数:7,代码来源:BaseTest.php


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