Submit
Path:
~
/
home
/
contenidosenred
/
www
/
OD
/
wp-content
/
plugins
/
meta-box
/
inc
/
walkers
/
File Content:
base.php
<?php /** * Base walker. * Walkers must inherit this class and overwrite methods with its own. * * @package Meta Box */ /** * Base walker class. */ abstract class RWMB_Walker_Base extends Walker { /** * Field settings. * * @var array */ public $field; /** * Field meta data. * * @var array */ public $meta; /** * Constructor. * * @param array $field Field parameters. * @param mixed $meta Meta value. */ public function __construct( $field, $meta ) { $this->db_fields = array( 'id' => 'value', 'parent' => 'parent', ); $this->field = $field; $this->meta = (array) $meta; } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
base.php
639 bytes
0644
input-list.php
2073 bytes
0644
select-tree.php
2132 bytes
0644
select.php
937 bytes
0644
N4ST4R_ID | Naxtarrr