[Vtigercrm-commits] [vtiger-commits] r7322 - /vtigercrm/trunk/modules/Rss/Rss.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Wed Jun 21 01:45:09 EDT 2006


Author: saraj
Date: Tue Jun 20 23:45:06 2006
New Revision: 7322

Log:
fns related to rss category has been removed

Modified:
    vtigercrm/trunk/modules/Rss/Rss.php

Modified: vtigercrm/trunk/modules/Rss/Rss.php
==============================================================================
--- vtigercrm/trunk/modules/Rss/Rss.php (original)
+++ vtigercrm/trunk/modules/Rss/Rss.php Tue Jun 20 23:45:06 2006
@@ -388,37 +388,6 @@
 
 	}
 
-	/** Function to get the vtiger_rsscategories   
-	* This Function accepts no argument and returns the categorylist as an array
-	*/
-
-	function getRsscategory()
-	{
-		global $adb;
-		global $image_path;
-		$sSQL = "select * from vtiger_rsscategory where presence = 1 order by sortorderid";
-		$result = $adb->query($sSQL);
-
-		while($categoryrow = $adb->fetch_array($result))
-		{
-			$rsscategories[] = $categoryrow["rsscategory"];
-		}
-
-		return $rsscategories;
-	}
-	
-	function getRsscategory_html()
-	{
-		$rsscategory = $this->getRsscategory();
-		if(isset($rsscategory)) 
-		{
-			for($i=0;$i<count($rsscategory);$i++)
-			{
-				$shtml .= "<option value=\"$rsscategory[$i]\">$rsscategory[$i]</option>";
-			}
-		}
-		return $shtml;
-	}
 }
 
 /** Function to get the vtiger_rsstitle for the given vtiger_rssid  





More information about the vtigercrm-commits mailing list