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