PluginProbe ʕ •ᴥ•ʔ
Admin Columns / 7.0.13
Admin Columns v7.0.13
7.1.4 7.0.19 2.3.5 2.4 2.4.1 2.4.10 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.4.7 2.4.8 2.4.9 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 2.5.6.1 2.5.6.2 2.5.6.3 2.5.6.4 3.0 3.0.1 3.0.2 3.0.3 3.0.5 3.0.7 3.1 3.1.1 3.1.10 3.1.2 3.1.3 3.1.5 3.2.3 3.2.7 3.3.1 3.4.1 3.4.6 3.4.8 4.0.1 4.0.3 4.1.6 4.2.2 4.2.5 4.3 4.3.2 4.4.1 4.4.4 4.4.5 4.5.5 4.6.1 4.7.18 4.7.19 4.7.20 4.7.7 7.0.13 7.0.14 7.0.16 trunk 1.0 1.1 1.1.3 1.2 1.2.1 1.3 1.3.1 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.5.1 1.4.6 1.4.6.1 1.4.6.2 1.4.6.3 1.4.6.4 1.4.7 1.4.8 1.4.9 2.0.0 2.0.1 2.0.2 2.0.3 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2 2.2.1 2.2.1.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.5.1 2.2.6 2.2.6.1 2.2.6.2 2.2.6.3 2.2.6.4 2.2.7 2.2.8 2.2.8.1 2.2.9 2.3.1 2.3.2 2.3.3
codepress-admin-columns / templates / admin / page / help-v2.php
codepress-admin-columns / templates / admin / page Last commit date
component 5 months ago help-v2.php 5 months ago
help-v2.php
71 lines
1 <?php
2
3 use AC\View; ?>
4 <div class="acu-mx-[50px] acu-pt-[70px]">
5 <div class="acu-hidden">
6 <hr class="wp-header-end acu-hidden">
7 </div>
8 <main class="acu-flex acu-gap-4 acu-w-full">
9 <div class="acu-bg-[white] acu-border acu-border-solid acu-border-ui-border acu-mb-[15px] acu-shadow acu-rounded-[10px] acu-flex-grow acu-max-w-[1200px]">
10 <div class="acu-px-[20px] acu-pt-[20px] acu-pb-[20px] acu-border-0 acu-border-b acu-border-solid acu-border-ui-border">
11 <h2 class="acu-my-[0] acu-text-2xl acu-font-normal">
12 <?= __('Help', 'codepress-admin-columns') ?>
13 </h2>
14 <span class="acu-pt-1 acu-block">
15 <?php
16 printf(
17 __(
18 'This site is using some actions or filters that have changed. Please read %s to resolve them.',
19 'codepress-admin-columns'
20 ),
21 sprintf(
22 '<a href="%s" target="_blank">%s</a>',
23 $this->documentation_url,
24 __('our documentation', 'codepress-admin-columns')
25 )
26 );
27 ?>
28
29 </span>
30 </div>
31 <div>
32 <table class="acui-table">
33 <thead>
34 <tr>
35 <th class="acu-p-1 acu-px-3 acu-py-3 acu-text-left">Deprecated Hook</th>
36 <th class="acu-p-1 acu-px-3 acu-py-3 acu-text-left">Description</th>
37 <th class="acu-p-1 acu-px-3 acu-py-3 acu-text-left">Documentation</th>
38 </tr>
39 </thead>
40 <tbody>
41 <?php
42 foreach ($this->deprecated_filters as $hook) {
43 $view = new View([
44 'type' => 'filter',
45 'hook' => $hook,
46 'documentation_url' => $this->documentation_url,
47 ]);
48 $view->set_template('admin/page/component/deprecated-hook-row');
49 echo $view->render();
50 }
51 ?>
52
53 <?php
54 foreach ($this->deprecated_actions as $hook) {
55 $view = new View([
56 'type' => 'action',
57 'hook' => $hook,
58 'documentation_url' => $this->documentation_url,
59 ]);
60 $view->set_template('admin/page/component/deprecated-hook-row');
61 echo $view->render();
62 }
63 ?>
64
65
66 </tbody>
67 </table>
68 </div>
69 </div>
70 </main>
71 </div>