Submit
Path:
~
/
home
/
getwphos
/
www
/
twinkletown
/
wp-content
/
plugins
/
wgl-extensions
/
includes
/
meta-box
/
inc
/
walkers
/
File Content:
base.php
<?php defined( 'ABSPATH' ) || die; /** * Base walker. * Walkers must inherit this class and overwrite methods with its own. */ 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 = [ 'id' => 'value', 'parent' => 'parent', ]; $this->field = $field; $this->meta = (array) $meta; } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
base.php
609 bytes
0644
input-list.php
1645 bytes
0644
select-tree.php
2251 bytes
0644
select.php
901 bytes
0644
N4ST4R_ID | Naxtarrr