for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Amarkal\Taxonomy;
class EditField
extends \Amarkal\UI\AbstractComponent
{
public function default_model()
return array(
'type' => '',
'label' => '',
'description' => ''
);
}
protected function on_created()
$this->model['value'] = \get_term_meta($this->term_id, $this->name, true);
public function get_script_path()
return __DIR__.'/edit-field.phtml';