1 | <?php |
||
3 | class acf_admin { |
||
4 | |||
5 | /* |
||
6 | * __construct |
||
7 | * |
||
8 | * Initialize filters, action, variables and includes |
||
9 | * |
||
10 | * @type function |
||
11 | * @date 23/06/12 |
||
12 | * @since 5.0.0 |
||
13 | * |
||
14 | * @param n/a |
||
15 | * @return n/a |
||
16 | */ |
||
|
|||
17 | |||
18 | function __construct() { |
||
26 | |||
27 | |||
28 | /* |
||
29 | * admin_menu |
||
30 | * |
||
31 | * This function will add the ACF menu item to the WP admin |
||
32 | * |
||
33 | * @type action (admin_menu) |
||
34 | * @date 28/09/13 |
||
35 | * @since 5.0.0 |
||
36 | * |
||
37 | * @param n/a |
||
38 | * @return n/a |
||
39 | */ |
||
40 | |||
41 | function admin_menu() { |
||
65 | |||
66 | |||
67 | /* |
||
68 | * admin_enqueue_scripts |
||
69 | * |
||
70 | * This function will add the already registered css |
||
71 | * |
||
72 | * @type function |
||
73 | * @date 28/09/13 |
||
74 | * @since 5.0.0 |
||
75 | * |
||
76 | * @param n/a |
||
77 | * @return n/a |
||
78 | */ |
||
79 | |||
80 | function admin_enqueue_scripts() { |
||
85 | |||
86 | |||
87 | /* |
||
88 | * admin_notices |
||
89 | * |
||
90 | * This function will render any admin notices |
||
91 | * |
||
92 | * @type function |
||
93 | * @date 17/10/13 |
||
94 | * @since 5.0.0 |
||
95 | * |
||
96 | * @param n/a |
||
97 | * @return n/a |
||
98 | */ |
||
99 | |||
100 | function admin_notices() { |
||
133 | |||
134 | } |
||
135 | |||
141 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.