[limb-svn] r5966 - 3.x/trunk/limb/core

svn at limb-project.com svn at limb-project.com
Fri Jun 8 13:54:46 MSD 2007


Author: pachanga
Date: 2007-06-08 13:54:46 +0400 (Fri, 08 Jun 2007)
New Revision: 5966
URL: http://fisheye.limb-project.com/changelog/limb/?cs=5966

Modified:
   3.x/trunk/limb/core/common.inc.php
Log:
-- removing deprecated stuff, adding phpdoc header

Modified: 3.x/trunk/limb/core/common.inc.php
===================================================================
--- 3.x/trunk/limb/core/common.inc.php	2007-06-08 09:50:55 UTC (rev 5965)
+++ 3.x/trunk/limb/core/common.inc.php	2007-06-08 09:54:46 UTC (rev 5966)
@@ -6,6 +6,11 @@
  * @copyright  Copyright © 2004-2007 BIT(http://bit-creative.com)
  * @license    LGPL http://www.gnu.org/copyleft/lesser.html
  */
+
+/**
+ * @package core
+ * @version $Id$
+ */
 $GLOBALS['LIMB_LAZY_CLASS_PATHS'] = array();
 
 function lmb_resolve_include_path($path)
@@ -136,33 +141,6 @@
     return $dump;
 }
 
-/**
- * @see lmb_camel_case
- * @deprecated
- */
-function toStudlyCaps($str, $ucfirst = true)
-{
-  return lmb_camel_case($str, $ucfirst);
-}
-
-/**
- * @see lmb_uder_scores
- * @deprecated
- */
-function to_under_scores($str)
-{
-  return lmb_under_scores($str);
-}
-
-/**
- * @see lmb_humanize
- * @deprecated
- */
-function makeStudlyCapsReadable($str)
-{
-  return lmb_humanize($str);
-}
-
 function lmb_camel_case($str, $ucfirst = true)
 {
   $res = preg_replace('~([a-zA-Z])?_([a-zA-Z])~e',



More information about the limb-svn mailing list