PluginProbe ʕ •ᴥ•ʔ
VikAppointments Services Booking Calendar / 1.2.20
VikAppointments Services Booking Calendar v1.2.20
1.2.21 1.2.20 trunk 1.2.17 1.2.18 1.2.19
vikappointments / site / helpers / libraries / customfields / emptyloader.php
vikappointments / site / helpers / libraries / customfields Last commit date
rules 1 month ago types 1 month ago control.php 1 month ago emptyloader.php 1 month ago factory.php 1 month ago field.php 1 month ago index.html 1 month ago loader.php 1 month ago renderer.php 1 month ago requestor.php 1 month ago rule.php 1 month ago
emptyloader.php
34 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 VAPLoader::import('libraries.customfields.loader');
15
16 /**
17 * Null pointer pattern to always return an empty list of custom fields.
18 *
19 * @since 1.7.7
20 */
21 final class VAPCustomFieldsEmptyLoader extends VAPCustomFieldsLoader
22 {
23 /**
24 * @inheritDoc
25 */
26 public function fetch()
27 {
28 // reset instance to support new queries
29 $this->reset();
30
31 return [];
32 }
33 }
34