blob: 6646eee681567143e4f1a0b6319e829f2dc22c59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<?php
/**
* The Inflector class is a namespace for inflections methods.
*
* @package trails
*
* @author mlunzena
* @copyright (c) Authors
* @version $Id: trails.php 7001 2008-04-04 11:20:27Z mlunzena $
*/
class Trails_Inflector {
/**
* Returns a camelized string from a lower case and underscored string by
* replacing slash with underscore and upper-casing each letter preceded
* by an underscore. TODO
*
* @param string String to camelize.
*
* @return string Camelized string.
*/
static function camelize($word) {
$parts = explode('/', $word);
foreach ($parts as $key => $part) {
$parts[$key] = str_replace(' ', '',
ucwords(str_replace('_', ' ', $part)));
}
return join('_', $parts);
}
/**
* <MethodDescription>
*
* @param type <description>
*
* @return type <description>
*/
static function underscore($word) {
$parts = explode('_', $word);
foreach ($parts as $key => $part) {
$parts[$key] = preg_replace('/(?<=\w)([A-Z])/', '_\\1', $part);
}
return strtolower(join('/', $parts));
}
}
|