PluginProbe
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts / 2.3.10
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts v2.3.10
2.7.6 2.7.5 2.7.4 trunk 1.3 2.0.4 2.0.6 2.1.91 2.2.4 2.2.7 2.2.9 2.3.1 2.3.10 2.4.10 2.4.2 2.4.4 2.4.5 2.4.6 2.4.7 2.4.8 2.4.9 2.6.0 2.6.1 2.7.0 2.7.1 All 27 releases
insert-php / includes / jsonmapper / class / type.php

type.php in Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts 2.3.10, at includes/jsonmapper/class/type.php

55 lines 766 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Type class
4 *
5 * @author Webcraftic <wordpress.webraftic@gmail.com>
6 * @copyright (c) 05.03.2019, Webcraftic
7 * @version 1.0
8 */
9
10 namespace WINP\JsonMapper;
11
12 // Exit if accessed directly
13 if ( ! defined( 'ABSPATH' ) ) {
14 exit;
15 }
16
17 class Type {
18
19 /**
20 * @var integer Type id
21 */
22 public $id;
23
24 /**
25 * @var string Type title
26 */
27 public $title;
28
29 /**
30 * @var string Type description
31 */
32 public $description;
33
34 /**
35 * @var integer Type author id
36 */
37 public $admin_id;
38
39 /**
40 * @var string Type slug
41 */
42 public $slug;
43
44 /**
45 * @var integer Type updated time (timestamp)
46 */
47 public $updated_at;
48
49 /**
50 * @var integer Type created time (timestamp)
51 */
52 public $created_at;
53
54 }
55