PluginProbe ʕ •ᴥ•ʔ
VikAppointments Services Booking Calendar / trunk
VikAppointments Services Booking Calendar vtrunk
trunk 1.2.17 1.2.18 1.2.19
vikappointments / admin / views / manageapiplugin / tmpl / default.php
vikappointments / admin / views / manageapiplugin / tmpl Last commit date
default.php 4 years ago index.html 4 years ago
default.php
52 lines
1 <?php
2 /**
3 * @package VikAppointments
4 * @subpackage core
5 * @author E4J s.r.l.
6 * @copyright Copyright (C) 2021 E4J s.r.l. All Rights Reserved.
7 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
8 * @link https://vikwp.com
9 */
10
11 // No direct access
12 defined('ABSPATH') or die('No script kiddies please!');
13
14 JHtml::fetch('vaphtml.assets.select2');
15 JHtml::fetch('vaphtml.assets.fontawesome');
16
17 $plugin = $this->plugin;
18
19 $vik = VAPApplication::getInstance();
20
21 ?>
22
23 <?php
24 /**
25 * Display plugin description outside of the form because it might use its own
26 * form to post the payload to the example end-point.
27 */
28 ?>
29
30 <?php echo $vik->openCard(); ?>
31
32 <div class="span12">
33 <?php echo $vik->openFieldset($plugin->getTitle() . ' : ' . $plugin->getName() . '.php'); ?>
34
35 <div><?php echo $plugin->getDescription(); ?></div>
36
37 <?php echo $vik->closeFieldset(); ?>
38 </div>
39
40 <?php echo $vik->closeCard(); ?>
41
42 <form name="adminForm" action="index.php" method="post" id="adminForm">
43
44 <?php echo JHtml::fetch('form.token'); ?>
45
46 <input type="hidden" name="task" value="" />
47 <input type="hidden" name="option" value="com_vikappointments" />
48
49 </form>
50
51
52