public function getCountCreatedInLastNDays($n, $args = array()) { return parent::getCountCreatedInLastNDays($n, $args); }
public function fetchAlphabetical($args = array()) { return parent::fetchAlphabetical($args); }
public function create($args = array()) { return parent::create($args); }
public function addStatusMessage($userId, $message, $args = array()) { $args = array("id" => $userId, "statusMessage" => $message); return parent::update($args); }
public function fetchRecentNextPage($args = array()) { return parent::fetchRecentNextPage($args); }
/** * 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); }