コード例 #1
0
 public function getCountCreatedInLastNDays($n, $args = array())
 {
     return parent::getCountCreatedInLastNDays($n, $args);
 }
コード例 #2
0
 public function fetchAlphabetical($args = array())
 {
     return parent::fetchAlphabetical($args);
 }
コード例 #3
0
 public function create($args = array())
 {
     return parent::create($args);
 }
コード例 #4
0
ファイル: NingUser.php プロジェクト: ning/ning-api-php
 public function addStatusMessage($userId, $message, $args = array())
 {
     $args = array("id" => $userId, "statusMessage" => $message);
     return parent::update($args);
 }
コード例 #5
0
 public function fetchRecentNextPage($args = array())
 {
     return parent::fetchRecentNextPage($args);
 }
コード例 #6
0
 /**
  * Fetch the next page of tags attached to the content id.
  *
  * @see NingObject::fetchUnorderedNextPage()
  */
 public function fetchUnorderedNextPage($id, $args = array())
 {
     $args[parent::ATTACHED_TO] = $id;
     return parent::fetchUnorderedNextPage($args);
 }