コード例 #1
0
ファイル: ElggSite.php プロジェクト: redvabel/Vabelgg
 /**
  * Get the collections associated with a site.
  *
  * @param string $subtype Subtype
  * @param int    $limit   Limit
  * @param int    $offset  Offset
  *
  * @return unknown
  * @deprecated 1.8 Was never implemented
  */
 public function getCollections($subtype = "", $limit = 10, $offset = 0)
 {
     elgg_deprecated_notice("ElggSite::getCollections() is deprecated", 1.8);
     get_site_collections($this->getGUID(), $subtype, $limit, $offset);
 }
コード例 #2
0
ファイル: sites.php プロジェクト: eokyere/elgg
 /**
  * Get the collections associated with a site.
  *
  * @param string $type
  * @param int $limit
  * @param int $offset
  * @return unknown
  */
 public function getCollections($subtype = "", $limit = 10, $offset = 0)
 {
     get_site_collections($this->getGUID(), $subtype, $limit, $offset);
 }