1 | <?php |
||
26 | abstract class AbstractWikiController extends AbstractBootstrapController { |
||
27 | |||
28 | /** |
||
29 | * Get the Syntax Highlighter config. |
||
30 | * |
||
31 | * @return SyntaxHighlighterConfig Returns the SyntaxHighlighter config. |
||
32 | */ |
||
33 | protected function getSyntaxHighlighterConfig() { |
||
45 | |||
46 | /** |
||
47 | * Get the Syntax Highlighter defaults. |
||
48 | * |
||
49 | * @return SyntaxHighlighterDefaults Returns the SyntaxHighlighter defaults. |
||
50 | */ |
||
51 | protected function getSyntaxHighlighterDefaults() { |
||
59 | |||
60 | /** |
||
61 | * Get a user. |
||
62 | * |
||
63 | * @return UserInterface Returns the user. |
||
64 | */ |
||
65 | protected function getUser() { |
||
68 | |||
69 | /** |
||
70 | * Get the user role colors. |
||
71 | * |
||
72 | * @return array Returns the user role colors. |
||
73 | */ |
||
74 | protected function getUserRoleColors() { |
||
81 | |||
82 | /** |
||
83 | * Get the user role translations. |
||
84 | * |
||
85 | * @return array Returns the user role translations. |
||
86 | */ |
||
87 | protected function getUserRoleTranslations() { |
||
94 | |||
95 | } |
||
96 |