Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | public static function inferCellTemplate($columnClassFqn) |
||
10 | { |
||
11 | $shortName = substr($columnClassFqn, strrpos($columnClassFqn, '\\') + 1); |
||
12 | $offset = strrpos($shortName, 'Column'); |
||
13 | |||
14 | if (false !== $offset) { |
||
15 | $shortName = substr($shortName, 0, $offset); |
||
16 | } |
||
17 | |||
18 | return $shortName; |
||
19 | } |
||
20 | } |
||
21 |