12345678910111213141516171819202122232425 |
- <?php
- /**
- * Define a Fichier
- * @author Valentin CARRUESCO
- * @category Plugin
- * @license copyright
- */
- class Scanfile extends Entity{
- public $id;
- public $tag; //Étiquettes (Étiquettes)
- public $client; //Client (Texte)
- public $element; //Élément document (Nombre Entier)
-
- protected $TABLE_NAME = 'skanman_scanfile';
- public $entityLabel = 'Fichier scanné';
- public $fields = array(
- 'id' => array('type'=>'key', 'label'=>'Identifiant'),
- 'tag' => array('type'=>'tag', 'label'=>'Étiquettes'),
- 'client' => array('type'=>'text', 'label'=>'Client','link'=>'plugin/client/Client.class.php'),
- 'element' => array('type'=>'integer', 'label'=>'Élement document', 'link'=>'plugin/document/Element.class.php'),
- );
- //Colonnes indexées
- public $indexes = array();
- }
|