removed some classes sufix

This commit is contained in:
Jacson Passold 2017-11-20 12:37:01 -02:00
parent b18962df06
commit c26f7e6d5e
12 changed files with 16 additions and 15 deletions

View File

@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) {
/** /**
* Class TainacanFieldType * Class TainacanFieldType
*/ */
class Checkbox_Field_Type extends Field_Type { class Checkbox extends Field_Type {
function __construct(){ function __construct(){
$this->primitive_type = 'date'; $this->primitive_type = 'date';

View File

@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) {
/** /**
* Class TainacanFieldType * Class TainacanFieldType
*/ */
class Textarea_Field_Type extends Field_Type { class Textarea extends Field_Type {
function __construct(){ function __construct(){
$this->primitive_type = 'date'; $this->primitive_type = 'date';

View File

@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) {
/** /**
* Class TainacanFieldType * Class TainacanFieldType
*/ */
class Numeric_Field_Type extends Field_Type { class Numeric extends Field_Type {
function __construct(){ function __construct(){
$this->primitive_type = 'float'; $this->primitive_type = 'float';

View File

@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) {
/** /**
* Class TainacanFieldType * Class TainacanFieldType
*/ */
class Radio_Field_Type extends Field_Type { class Radio extends Field_Type {
function __construct(){ function __construct(){
$this->primitive_type = ''; $this->primitive_type = '';

View File

@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) {
/** /**
* Class TainacanFieldType * Class TainacanFieldType
*/ */
class Relationship_Field_Type extends Field_Type { class Relationship extends Field_Type {
function __construct(){ function __construct(){
$this->primitive_type = ''; $this->primitive_type = '';

View File

@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) {
/** /**
* Class TainacanFieldType * Class TainacanFieldType
*/ */
class Selectbox_Field_Type extends Field_Type { class Selectbox extends Field_Type {
function __construct(){ function __construct(){
$this->primitive_type = ''; $this->primitive_type = '';

View File

@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) {
/** /**
* Class TainacanFieldType * Class TainacanFieldType
*/ */
class Text_Field_Type extends Field_Type { class Text extends Field_Type {
function __construct(){ function __construct(){
$this->primitive_type = 'string'; $this->primitive_type = 'string';

View File

@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) {
/** /**
* Class TainacanFieldType * Class TainacanFieldType
*/ */
class Field_Type extends Field_Type { class Textarea extends Field_Type {
function __construct(){ function __construct(){
$this->primitive_type = 'string'; $this->primitive_type = 'string';

View File

@ -7,8 +7,9 @@ if ( ! defined( 'ABSPATH' ) ) {
/** /**
* Class TainacanFieldType * Class TainacanFieldType
* List_Filter because List is reseved
*/ */
class List_Filter_Type extends Filter_Type { class List_Filter extends Filter_Type {
function __construct(){ function __construct(){
$this->supported_types[] = 'string'; $this->supported_types[] = 'string';

View File

@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) {
/** /**
* Class TainacanFieldType * Class TainacanFieldType
*/ */
class Range_Filter_Type extends Filter_Type { class Range extends Filter_Type {
function __construct(){ function __construct(){
$this->supported_types = ['float','date']; $this->supported_types = ['float','date'];

View File

@ -42,9 +42,9 @@ class Filters extends \WP_UnitTestCase {
$collection = new \Tainacan\Entities\Collection(); $collection = new \Tainacan\Entities\Collection();
$metadata = new \Tainacan\Entities\Metadata(); $metadata = new \Tainacan\Entities\Metadata();
$filter = new \Tainacan\Entities\Filter(); $filter = new \Tainacan\Entities\Filter();
$type = new \Tainacan\Field_Types\Text_Field_Type(); $type = new \Tainacan\Field_Types\Text();
$filter_list_type = new \Tainacan\Filter_Types\List_Filter_Type(); $filter_list_type = new \Tainacan\Filter_Types\List_Filter();
$filter_range_type = new \Tainacan\Filter_Types\Range_Filter_Type(); $filter_range_type = new \Tainacan\Filter_Types\Range();
$collection->set_name('teste'); $collection->set_name('teste');
$collection = $Tainacan_Collections->insert($collection); $collection = $Tainacan_Collections->insert($collection);

View File

@ -49,7 +49,7 @@ class Metadata extends \WP_UnitTestCase {
$collection = new \Tainacan\Entities\Collection(); $collection = new \Tainacan\Entities\Collection();
$metadata = new \Tainacan\Entities\Metadata(); $metadata = new \Tainacan\Entities\Metadata();
$type = new \Tainacan\Field_Types\Text_Field_Type(); $type = new \Tainacan\Field_Types\Text();
$collection->set_name('teste'); $collection->set_name('teste');
$collection = $Tainacan_Collections->insert($collection); $collection = $Tainacan_Collections->insert($collection);
@ -67,7 +67,7 @@ class Metadata extends \WP_UnitTestCase {
$this->assertEquals($test->get_name(), 'metadado'); $this->assertEquals($test->get_name(), 'metadado');
$this->assertEquals($test->get_collection_id(), $collection->get_id()); $this->assertEquals($test->get_collection_id(), $collection->get_id());
$this->assertEquals('Tainacan\Field_Types\Text_Field_Type', $test->get_field_type()); $this->assertEquals('Tainacan\Field_Types\Text', $test->get_field_type());
$this->assertEquals($test->get_field_type_object(), $type); $this->assertEquals($test->get_field_type_object(), $type);
} }
} }