Name.php
276 Bytes
<?php
namespace ACP\Editing\Service\Taxonomy;
use ACP\Editing\View;
class Name extends Field {
public function __construct( $taxonomy ) {
parent::__construct( $taxonomy, 'name' );
}
public function get_view( string $context ): ?View {
return new View\Text();
}
}