. * */ /** * Handles some tasks related to the query string */ interface org_tubepress_querystring_QueryStringService { /** * Returns what's in the address bar * * @return string What's in the address bar */ public function getFullUrl($serverVars); /** * Try to figure out what page we're on by looking at the query string * Defaults to '1' if there's any doubt * * @return int The page number */ public function getPageNum($getVars); public function getCustomVideo($getVars); }