1 | <?php |
||
26 | abstract class AbstractWikiController extends AbstractBootstrapController { |
||
27 | |||
28 | /** |
||
29 | * Get a user. |
||
30 | * |
||
31 | * @return UserInterface Returns the user. |
||
32 | */ |
||
33 | protected function getSampleUser() { |
||
36 | |||
37 | /** |
||
38 | * Get a user role colors. |
||
39 | * |
||
40 | * @return array Returns the user role colors. |
||
41 | */ |
||
42 | protected function getSampleUserRoleColors() { |
||
49 | |||
50 | /** |
||
51 | * Get a user role translations. |
||
52 | * |
||
53 | * @return array Returns the user role translations. |
||
54 | */ |
||
55 | protected function getSampleUserRoleTranslations() { |
||
62 | |||
63 | /** |
||
64 | * Get the Syntax Highlighter config. |
||
65 | * |
||
66 | * @return SyntaxHighlighterConfig Returns the SyntaxHighlighter config. |
||
67 | */ |
||
68 | protected function getSyntaxHighlighterConfig() { |
||
80 | |||
81 | /** |
||
82 | * Get the Syntax Highlighter defaults. |
||
83 | * |
||
84 | * @return SyntaxHighlighterDefaults Returns the SyntaxHighlighter defaults. |
||
85 | */ |
||
86 | protected function getSyntaxHighlighterDefaults() { |
||
94 | |||
95 | } |
||
96 |