Newer
Older
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
/*
+--------------------------------------------------------------------+
| Copyright CiviCRM LLC. All rights reserved. |
| |
| This work is published under the GNU AGPLv3 license with some |
| permitted exceptions and without any warranty. For full license |
| and copyright information, see https://civicrm.org/licensing |
+--------------------------------------------------------------------+
*/
/**
*
* @package CRM
* @copyright CiviCRM LLC https://civicrm.org/licensing
*
*/
?><!-- assets/templates/metaboxes/metabox.options.links.php -->
<?php
/**
* Before Links section.
*
* @since 5.34
*/
do_action('civicrm/metabox/links/pre');
?>
<p><?php _e('Below is a list of shortcuts to some CiviCRM admin pages that are important when you are setting up CiviCRM. When these settings are correctly configured, your CiviCRM installation should be ready for you to customise to your requirements.', 'civicrm'); ?></p>
<ul>
<?php foreach ($admin_links as $admin_link) : ?>
<li>
<a href="<?php echo $admin_link['url']; ?>"><?php echo $admin_link['text']; ?></a>
</li>
<?php endforeach; ?>
</ul>
<hr>
<p><?php _e('Shortcuts to some CiviCRM maintenance tasks.', 'civicrm'); ?></p>
<ul>
<?php foreach ($maintenance_links as $maintenance_link) : ?>
<li>
<a href="<?php echo $maintenance_link['url']; ?>"><?php echo $maintenance_link['text']; ?></a>
<?php if (!empty($maintenance_link['description'])) : ?>
<p class="description"><?php echo $maintenance_link['description']; ?></p>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ul>
<?php
/**
* After Links section.
*
* @since 5.34
*/
do_action('civicrm/metabox/links/post');