[xoops-cvslog 4963] CVS update: xoops2jp/html/modules/user/class

Back to archive index

Minahito minah****@users*****
2006年 10月 12日 (木) 23:45:48 JST


Index: xoops2jp/html/modules/user/class/PageNavigator.class.php
diff -u xoops2jp/html/modules/user/class/PageNavigator.class.php:1.1.2.4.2.2 xoops2jp/html/modules/user/class/PageNavigator.class.php:removed
--- xoops2jp/html/modules/user/class/PageNavigator.class.php:1.1.2.4.2.2	Fri Sep 29 17:14:45 2006
+++ xoops2jp/html/modules/user/class/PageNavigator.class.php	Thu Oct 12 23:45:48 2006
@@ -1,75 +0,0 @@
-<?php
-
-if (!defined('XOOPS_ROOT_PATH')) exit();
-
-require_once XOOPS_ROOT_PATH . "/core/XCube_PageNavigator.class.php";
-
-class User_PageNavigator extends XCube_PageNavigator
-{
-	function getRenderSortUrl()
-	{
-		return parent::renderSortUrl('sort');
-	}
-
-	function renderHidden($sort = null)
-	{
-		if ($mask == null) {
-			$mask = array();
-		}
-		elseif (!is_array($mask)) {
-			$mask = array($mask);
-		}
-	
-		$ret = null;
-	
-		foreach ($this->mExtra as $key => $value) {
-			if (!isset($mask[$key])) {
-				$value = htmlspecialchars($value, ENT_QUOTES);
-				$ret .= "<input type=\"hidden\" name=\"${key}\" value=\"${value}\" />";
-			}
-		}
-	
-		return $ret;
-	}
-	
-	/**
-	 * Render URL with replacing base url. This method is used to user search list.
-	 * 
-	 * @param $url string
-	 * @param $mask mixed
-	 */
-	function getRenderOtherUrl($url, $mask = null)
-	{
-		if ($mask == null) {
-			$mask = array();
-		}
-		if (!is_array($mask)) {
-			$mask = array($mask);
-		}
-		
-		if(count($this->mExtra) > 0) {
-			$tarr=array();
-			
-			foreach($this->mExtra as $key=>$value) {
-				if (is_array($mask) && !isset($mask[$key])) {
-					$tarr[]=$key."=".urlencode($value);
-				}
-			}
-			
-			if (count($tarr)==0) {
-				return $url;
-			}
-			
-			if(strpos($url,"?")!==false) {
-				return $url."&amp;".implode("&amp;",$tarr);
-			}
-			else {
-				return $url."?".implode("&amp;",$tarr);
-			}
-		}
-		
-		return $url;
-	}
-}
-
-?>


xoops-cvslog メーリングリストの案内
Back to archive index