item.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @package VikAppointments - Libraries |
| 4 | * @subpackage html.changelog |
| 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 | $title = isset($displayData['title']) ? $displayData['title'] : ''; |
| 15 | $descr = isset($displayData['descr']) ? $displayData['descr'] : ''; |
| 16 | |
| 17 | ?> |
| 18 | <li class="vikwp-changelog-feature-title"><strong><?php echo $title; ?></strong></li> |
| 19 | <li class="vikwp-changelog-feature-descr"><?php echo $descr; ?></li> |
| 20 |