Example #1
0
 /**
 * Converts a table name to its class name according to rails
 * naming conventions.
 * 
 * Converts "people" to "Person"
 * 
 * @access public
 * @static
 * @see tableize
 * @param    string    $table_name    Table name for getting related ClassName.
 * @return string SingularClassName
 */
 function classify($table_name)
 {
     return WOOF_Inflector::camelize(WOOF_Inflector::singularize($table_name));
 }