Esempio n. 1
0
 /**
  * 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);
 }
Esempio n. 2
0
 /**
  * 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);
 }