PluginProbe
WP Ultimate Post Grid / 1.7.2
WP Ultimate Post Grid v1.7.2
4.1.1 trunk 1.5 1.6 1.7 1.7.1 1.7.2 1.8 1.9 2.0 2.1 2.2 2.3 2.4.0 2.5.0 2.6.0 2.7.0 2.8.0 2.8.2 3.0.0 3.3.0 3.4.0 3.5.0 3.6.0 3.7.0 All 32 releases
wp-ultimate-post-grid / vendor / vafpress / classes / control / field / item / generic.php

generic.php in WP Ultimate Post Grid 1.7.2, at vendor/vafpress/classes/control/field/item/generic.php

39 lines 464 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Not really a class, jump simple 'struct' storing multiple choice option item.
5 */
6 class VP_Control_Field_Item_Generic
7 {
8
9 public $img;
10
11 public $value;
12
13 public $label;
14
15 public function __construct(){}
16
17 public function img($img)
18 {
19 $this->img = $img;
20 return $this;
21 }
22
23 public function value($value)
24 {
25 $this->value = $value;
26 return $this;
27 }
28
29 public function label($label)
30 {
31 $this->label = $label;
32 return $this;
33 }
34
35 }
36
37 /**
38 * EOF
39 */