PATH:
home
/
letacommog
/
entrepro
/
wp-content
/
themes
/
rehub
/
vafpress-framework
/
classes
/
control
/
field
/
item
<?php /** * Not really a class, jump simple 'struct' storing multiple choice option item. */ class VP_Control_Field_Item_Generic { public $img; public $value; public $label; public function __construct(){} public function img($img) { $this->img = $img; return $this; } public function value($value) { $this->value = $value; return $this; } public function label($label) { $this->label = $label; return $this; } } /** * EOF */
[+]
..
[-] generic.php
[edit]