PluginProbe
Customify / 1.6.5
Customify v1.6.5
2.10.9 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.7.1 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.6.0 1.6.0.1 1.6.5 1.7.0 1.7.1 All 77 releases
customify / core / interfaces / Processor.php

Processor.php in Customify 1.6.5, at core/interfaces/Processor.php

46 lines 635 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php defined('ABSPATH') or die;
2
3 /**
4 * @package pixcustomify
5 * @category core
6 * @author Pixelgrade Team
7 * @copyright (c) 2013, Pixelgrade
8 */
9 interface PixCustomifyProcessor {
10
11 /**
12 * @return static $this
13 */
14 function run();
15
16 /**
17 * @return array
18 */
19 function status();
20
21 /**
22 * @return PixCustomifyMeta current data (influenced by user submitted data)
23 */
24 function data();
25
26 /**
27 * Shorthand.
28 *
29 * @return array
30 */
31 function errors();
32
33 /**
34 * Shorthand.
35 *
36 * @return boolean
37 */
38 function performed_update();
39
40 /**
41 * @return boolean true if state is nominal
42 */
43 function ok();
44
45 } # interface
46