default.php
2 days ago
default.xml
2 days ago
default_appointment.php
2 days ago
default_attendees.php
2 days ago
default_backbutton.php
2 days ago
default_countdown.php
2 days ago
default_locations.php
2 days ago
default_orderdetails.php
2 days ago
default_service.php
2 days ago
default_usernote.php
2 days ago
default_usernote_block.php
2 days ago
index.html
2 days ago
track.php
2 days ago
default_backbutton.php
24 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 | if (!JFactory::getUser()->guest) |
| 15 | { |
| 16 | ?> |
| 17 | <div class="vaporder-backbox"> |
| 18 | <a href="<?php echo JRoute::rewrite('index.php?option=com_vikappointments&view=allorders' . ($this->itemid ? '&Itemid=' . $this->itemid : '')); ?>" class="vap-btn blue"> |
| 19 | <?php echo JText::translate('VAPALLORDERSBUTTON'); ?> |
| 20 | </a> |
| 21 | </div> |
| 22 | <?php |
| 23 | } |
| 24 |