inline-editing.php
1.34 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
40
41
42
43
44
45
<?php
use AC\Type\Url\Documentation;
?>
<h3>
<?= __('Inline Editing', 'codepress-admin-columns') ?>
</h3>
<p>
<?= sprintf(
__(
'With Inline Edit, you can update your content quick and easy, without having to open each %s one at the time.',
'codepress-admin-columns'
),
sprintf('"%s"', $this->object_type)
); ?>
</p>
<p>
1. <?= __(
'To start inline editing, toggle the “Inline Edit” button on top of the list table.',
'codepress-admin-columns'
); ?>
</p>
<img width="107" src="<?= esc_url(
ac_get_url('assets/images/tooltip/inline-edit-toggle.png')
) ?>" alt="Toggle Inline Edit" style="border:1px solid #ddd;">
<p>
2. <?= __('Click on the pencil icon to start editing the value of a field.', 'codepress-admin-columns'); ?>
</p>
<img src="<?= esc_url(
ac_get_url('assets/images/tooltip/inline-edit.png')
) ?>" alt="Usage of Inline Edit" width="213" style="border:1px solid #ddd;">
<p>
3. <?= __(
'It is possible to undo and redo all changes made with Inline Editing, so using it is without risk.',
'codepress-admin-columns'
); ?>
</p>
<p>
<a href="<?= esc_url(
Documentation::create_with_path(Documentation::ARTICLE_INLINE_EDITING)->get_url()
); ?>" target="_blank">
<?= __('Learn more »', 'codepress-admin-columns'); ?>
</a>
</p>