default.php
1 month ago
default.xml
1 month ago
default_calendars.php
1 month ago
default_checkout.php
1 month ago
default_contact.php
1 month ago
default_filterbar.php
1 month ago
default_login.php
1 month ago
default_options.php
1 month ago
default_reviews.php
1 month ago
default_service.php
1 month ago
default_timeline.php
1 month ago
default_waitlist.php
1 month ago
index.html
1 month ago
default_options.php
39 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 | $data = array( |
| 15 | /** |
| 16 | * The list of options assigned to this service. |
| 17 | * |
| 18 | * @var object[] |
| 19 | */ |
| 20 | 'options' => $this->service->options, |
| 21 | ); |
| 22 | |
| 23 | /** |
| 24 | * The options block is displayed from the layout below: |
| 25 | * /components/com_vikappointments/layouts/blocks/waitlist.php |
| 26 | * |
| 27 | * If you need to change something from this layout, just create |
| 28 | * an override of this layout by following the instructions below: |
| 29 | * - open the back-end of your Joomla |
| 30 | * - visit the Extensions > Templates > Templates page |
| 31 | * - edit the active template |
| 32 | * - access the "Create Overrides" tab |
| 33 | * - select Layouts > com_vikappointments > blocks |
| 34 | * - start editing the waitlist.php file on your template to create your own layout |
| 35 | * |
| 36 | * @since 1.6 |
| 37 | */ |
| 38 | echo JLayoutHelper::render('blocks.options', $data); |
| 39 |