PluginProbe ʕ •ᴥ•ʔ
Admin Columns / 7.1.4
Admin Columns v7.1.4
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 3 days ago help-v2.php 3 days ago
help-v2.php
73 lines
1 <?php
2
3 declare(strict_types=1);
4
5 use AC\View; ?>
6 <div class="acu-mx-[50px] acu-pt-[70px]">
7 <div class="acu-hidden">
8 <hr class="wp-header-end acu-hidden">
9 </div>
10 <main class="acu-flex acu-gap-4 acu-w-full">
11 <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]">
12 <div class="acu-px-[20px] acu-pt-[20px] acu-pb-[20px] acu-border-0 acu-border-b acu-border-solid acu-border-ui-border">
13 <h2 class="acu-my-[0] acu-text-2xl acu-font-normal">
14 <?= __('Help', 'codepress-admin-columns') ?>
15 </h2>
16 <span class="acu-pt-1 acu-block">
17 <?php
18 printf(
19 __(
20 'This site is using some actions or filters that have changed. Please read %s to resolve them.',
21 'codepress-admin-columns'
22 ),
23 sprintf(
24 '<a href="%s" target="_blank">%s</a>',
25 $this->documentation_url,
26 __('our documentation', 'codepress-admin-columns')
27 )
28 );
29 ?>
30
31 </span>
32 </div>
33 <div>
34 <table class="acui-table">
35 <thead>
36 <tr>
37 <th class="acu-p-1 acu-px-3 acu-py-3 acu-text-left">Deprecated Hook</th>
38 <th class="acu-p-1 acu-px-3 acu-py-3 acu-text-left">Description</th>
39 <th class="acu-p-1 acu-px-3 acu-py-3 acu-text-left">Documentation</th>
40 </tr>
41 </thead>
42 <tbody>
43 <?php
44 foreach ($this->deprecated_filters as $hook) {
45 $view = new View([
46 'type' => 'filter',
47 'hook' => $hook,
48 'documentation_url' => $this->documentation_url,
49 ]);
50 $view->set_template('admin/page/component/deprecated-hook-row');
51 echo $view->render();
52 }
53 ?>
54
55 <?php
56 foreach ($this->deprecated_actions as $hook) {
57 $view = new View([
58 'type' => 'action',
59 'hook' => $hook,
60 'documentation_url' => $this->documentation_url,
61 ]);
62 $view->set_template('admin/page/component/deprecated-hook-row');
63 echo $view->render();
64 }
65 ?>
66
67
68 </tbody>
69 </table>
70 </div>
71 </div>
72 </main>
73 </div>