// Format definitions

This commit is contained in:
rMalie
2011-12-13 13:41:54 +00:00
parent a40f3c304c
commit c022f4e0e5
71 changed files with 710 additions and 1791 deletions
+4 -11
View File
@@ -31,10 +31,6 @@ class FeatureCore extends ObjectModel
public $name;
public $position;
/**
* @see ObjectModel::$definition
*/
@@ -42,8 +38,10 @@ class FeatureCore extends ObjectModel
'table' => 'feature',
'primary' => 'id_feature',
'fields' => array(
'name' => array('type' => 'FILL_ME', 'lang' => true, 'validate' => 'isGenericName', 'required' => true, 'size' => 128),
'position' => array('type' => 'FILL_ME', 'lang' => true, 'validate' => 'isInt'),
'position' => array('type' => self::TYPE_INT, 'validate' => 'isInt'),
// Lang fields
'name' => array('type' => 'FILL_ME', 'lang' => true, 'validate' => 'isGenericName', 'required' => true, 'size' => 128),
),
);
@@ -54,11 +52,6 @@ class FeatureCore extends ObjectModel
'fields' => array(),
);
public function getFields()
{
return array('id_feature' => null, 'position' => (int)$this->position);
}
/**
* Check then return multilingual fields for database interaction
*