本文整理汇总了PHP中collection::get_sbas_id方法的典型用法代码示例。如果您正苦于以下问题:PHP collection::get_sbas_id方法的具体用法?PHP collection::get_sbas_id怎么用?PHP collection::get_sbas_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类collection
的用法示例。
在下文中一共展示了collection::get_sbas_id方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: userHasRequestedARegistrationOnCollection
/**
* Tells whether user has ever requested a registration on collection or not.
*
* @param \collection $collection
* @param $userData
*
* @return boolean
*/
private function userHasRequestedARegistrationOnCollection(\collection $collection, $userData)
{
if (null === ($userRegistration = igorw\get_in($userData, [$collection->get_sbas_id(), $collection->get_base_id()]))) {
return false;
}
return !is_null($userRegistration['active']);
}
示例2: testGet_sbas_id
public function testGet_sbas_id()
{
$this->assertTrue(is_int(self::$object->get_sbas_id()));
$this->assertEquals(self::$object->get_sbas_id(), self::$object->get_databox()->get_sbas_id());
}
示例3: listCollection
private function listCollection(\collection $collection)
{
return ['base_id' => $collection->get_base_id(), 'databox_id' => $collection->get_sbas_id(), 'collection_id' => $collection->get_coll_id(), 'name' => $collection->get_name(), 'labels' => ['fr' => $collection->get_label('fr'), 'en' => $collection->get_label('en'), 'de' => $collection->get_label('de'), 'nl' => $collection->get_label('nl')], 'record_amount' => $collection->get_record_amount()];
}