layout
3 days ago
type
3 days ago
index.html
3 days ago
layout.php
3 days ago
manager.php
3 days ago
type.php
3 days ago
layout.php
30 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 | * Interface used to change the layout of the processed working days. |
| 16 | * |
| 17 | * @since 1.7.1 |
| 18 | */ |
| 19 | interface VAPWorktimeImportLayout |
| 20 | { |
| 21 | /** |
| 22 | * Refactor the times array into a specific layout. |
| 23 | * |
| 24 | * @param array $times An array of working times. |
| 25 | * |
| 26 | * @return mixed The resulting layout. |
| 27 | */ |
| 28 | public function build($times); |
| 29 | } |
| 30 |