| 1 | <?php |
||
| 17 | class TcaUtility |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Inserts a divider tab before a given column name. |
||
| 21 | * |
||
| 22 | * @param array $base The base TCA array |
||
| 23 | * @param string $columnName The column name before to insert a tab divider |
||
| 24 | * @param string $tabTitle The title of the tab |
||
| 25 | * |
||
| 26 | * @throws Exception |
||
| 27 | * |
||
| 28 | * @return array |
||
| 29 | */ |
||
| 30 | public static function insertTabDividerBefore(&$base, $columnName, $tabTitle) |
||
| 45 | } |
||
| 46 |