// 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
+1 -10
View File
@@ -29,10 +29,6 @@ class ProfileCore extends ObjectModel
{
/** @var string Name */
public $name;
/**
* @see ObjectModel::$definition
@@ -42,16 +38,11 @@ class ProfileCore extends ObjectModel
'primary' => 'id_profile',
'multilang' => true,
'fields' => array(
// Lang fields
'name' => array('type' => 'FILL_ME', 'lang' => true, 'validate' => 'isGenericName', 'required' => true, 'size' => 32),
),
);
public function getFields()
{
return array('id_profile' => $this->id);
}
/**
* Check then return multilingual fields for database interaction
*