bulk-editing.php
1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
use AC\Type\Url\Documentation;
?>
<h3>
<?= __('Bulk Editing', 'codepress-admin-columns'); ?>
</h3>
<p>
<?= __('Bulk Edit allows you to update multiple values at once.', 'codepress-admin-columns'); ?>
</p>
<p>
1. <?= __(
'Select more than one row from the list table to show the bulk edit buttons.',
'codepress-admin-columns'
); ?>
</p>
<img src="<?= esc_url(
ac_get_url('assets/images/tooltip/bulk-edit.png')
) ?>" alt="Bulk Edit" style="border:1px solid #ddd;">
<p>
2. <?= sprintf(
__(
'Clicking the %s button will display a popup that allows you to add or change the current value of all selected items.',
'codepress-admin-columns'
),
sprintf('<strong>%s</strong>', __('Bulk Edit', 'codepress-admin-columns'))
); ?>
</p>
<img src="<?= esc_url(
ac_get_url('assets/images/tooltip/bulk-edit-author.png')
) ?>" alt="Bulk Edit" style="border:1px solid #ddd;">
<p>
<a href="<?= esc_url(
Documentation::create_with_path(Documentation::ARTICLE_BULK_EDITING)->get_url()
) ?>" target="_blank">
<?= __('Learn more »', 'codepress-admin-columns') ?>
</a>
</p>