default.php
26 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 | /** |
| 15 | * Layout variables |
| 16 | * ----------------- |
| 17 | * @param object status Holds the details of the status code. |
| 18 | */ |
| 19 | extract($displayData); |
| 20 | |
| 21 | ?> |
| 22 | |
| 23 | <b style="color: #<?php echo $status->color; ?>; text-transform: uppercase;"> |
| 24 | <?php echo $status->name; ?> |
| 25 | </b> |
| 26 |