1 | <?php |
||
12 | abstract class Manager { |
||
13 | |||
14 | |||
15 | /** |
||
16 | * @param $ref |
||
17 | * @return string |
||
18 | */ |
||
19 | public function getBundleShortName ( $ref ){ |
||
23 | |||
24 | |||
25 | /** |
||
26 | * @param $ref |
||
27 | * @return string |
||
28 | */ |
||
29 | public function getBundlePath ( $ref ){ |
||
33 | |||
34 | |||
35 | /** |
||
36 | * @param $ref |
||
37 | * @param bool $withouSlash |
||
38 | * @return string |
||
39 | */ |
||
40 | public function getFullBundlePath($ref,$withouSlash = false) |
||
50 | |||
51 | |||
52 | /** |
||
53 | * @param $ref |
||
54 | * @return string |
||
55 | */ |
||
56 | public function getClassShortName( $ref ) { |
||
63 | |||
64 | |||
65 | /** |
||
66 | * @param $ref |
||
67 | * @return string |
||
68 | */ |
||
69 | public function getClassName ( $ref ) { |
||
73 | |||
74 | /** |
||
75 | * Retrieve class repository name |
||
76 | * @param $comment_class |
||
77 | * @return string |
||
78 | */ |
||
79 | public function classRepository($comment_class) |
||
86 | } |
||
87 |