source: trunk/www.guidonia.net/wp/wp-content/plugins/tubepress/classes/org/tubepress/querystring/SimpleQueryStringService.class.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 2.4 KB
Line 
1<?php
2/**
3 * Copyright 2006, 2007, 2008, 2009 Eric D. Hough (http://ehough.com)
4 *
5 * This file is part of TubePress (http://tubepress.org)
6 *
7 * TubePress is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * TubePress is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with TubePress. If not, see <http://www.gnu.org/licenses/>.
19 *
20 */
21
22function_exists('tubepress_load_classes')
23 || require(dirname(__FILE__) . '/../../../tubepress_classloader.php');
24tubepress_load_classes(array('org_tubepress_querystring_QueryStringService'));
25
26/**
27 * Simple implementation of org_tubepress_querystring_QueryStringService
28 */
29class org_tubepress_querystring_SimpleQueryStringService implements org_tubepress_querystring_QueryStringService
30{
31 /**
32 * Returns what's in the address bar
33 *
34 * @return string What's in the address bar
35 */
36 public function getFullUrl($serverVars)
37 {
38 $pageURL = 'http';
39 if ($serverVars["HTTPS"] == "on") {
40 $pageURL .= "s";
41 }
42 $pageURL .= "://";
43 if ($serverVars["SERVER_PORT"] != "80") {
44 $pageURL .= $serverVars["SERVER_NAME"].":".
45 $serverVars["SERVER_PORT"].$serverVars["REQUEST_URI"];
46 } else {
47 $pageURL .= $serverVars["SERVER_NAME"].$serverVars["REQUEST_URI"];
48 }
49 return $pageURL;
50 }
51
52 /**
53 * Try to figure out what page we're on by looking at the query string
54 * Defaults to '1' if there's any doubt
55 *
56 * @return int The page number
57 */
58 public function getPageNum($getVars)
59 {
60 $pageNum = ((isset($getVars["tubepress_page"])) ?
61 $getVars["tubepress_page"] : 1);
62
63 if (!is_numeric($pageNum) || ($pageNum < 1)) {
64 $pageNum = 1;
65 }
66 return $pageNum;
67 }
68
69 public function getCustomVideo($getVars)
70 {
71 return isset($getVars["tubepress_video"]) ?
72 $getVars["tubepress_video"] : "";
73 }
74}
Note: See TracBrowser for help on using the repository browser.