Пример #1
0
 public function getCountCreatedInLastNDays($n, $args = array())
 {
     return parent::getCountCreatedInLastNDays($n, $args);
 }
Пример #2
0
 public function fetchAlphabetical($args = array())
 {
     return parent::fetchAlphabetical($args);
 }
 public function create($args = array())
 {
     return parent::create($args);
 }
Пример #4
0
 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);
 }