Skip to content

Commit

Permalink
entity_generator commentaires
Browse files Browse the repository at this point in the history
  • Loading branch information
legagneur-matthieu committed Oct 5, 2022
1 parent 10d1b5b commit 7e0aada
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions dwf/class/entity_generator.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ private static function get_class() {
$class .= '$this->_this_was_modified = false;' . PHP_EOL . ' }' . PHP_EOL;

//génére la fonction statique ( static ) d'ajout
$class .= '/** Ajoute une entrée en base de données */' . PHP_EOL
$class .= '/** Ajoute une entrée en base de donnée */' . PHP_EOL
. ' public static function ajout(';
$class .= strtr($p, ['1__,' => '']) . ') { ' . PHP_EOL;
$class .= $tuple_ajout;
Expand Down Expand Up @@ -214,8 +214,8 @@ private static function get_class() {
. '}' . PHP_EOL;

//génére la fonction statique ( static ) get_collection
$class .= "/** Retourne le contenu de la table sout forme d'une collection " . PHP_EOL
. '*ATTENTION PENSEZ A UTILISER application::$_bdd->protect_var(); */' . PHP_EOL
$class .= "/** Retourne le contenu de la table sous forme d'une collection " . PHP_EOL
. '*ATTENTION, PENSEZ A UTILISER application::$_bdd->protect_var(); */' . PHP_EOL
. 'public static function get_collection($where = "" ) {' . PHP_EOL
. ' $col=[];' . PHP_EOL
. ' foreach (' . self::$_table . '::get_table_array($where) as $entity) {' . PHP_EOL
Expand All @@ -231,8 +231,8 @@ private static function get_class() {
. '}' . PHP_EOL;

//génére la fonction statique ( static ) get_table_array()
$class .= "/** Retourne le contenu de la table sout forme d'un tableau a 2 dimensions " . PHP_EOL
. '* ATTENTION PENSEZ A UTILISER application::$_bdd->protect_var(); */' . PHP_EOL
$class .= "/** Retourne le contenu de la table sous forme d'un tableau a 2 dimensions " . PHP_EOL
. '* ATTENTION, PENSEZ A UTILISER application::$_bdd->protect_var(); */' . PHP_EOL
. 'public static function get_table_array($where = "") {' . PHP_EOL
. ' $data = application::$_bdd->fetch("select * from ' . self::$_table . '" . (!empty($where) ? " where " . $where : "") . ";");' . PHP_EOL
. ' $tuples_array = [];' . PHP_EOL
Expand All @@ -251,7 +251,7 @@ private static function get_class() {

//génére la fonction statique ( static ) get_table_ordored_array
$class .= "/** Retourne le contenu de la table sous forme d'un tableau a 2 dimensions dont la clé est l'identifiant de l'entité " . PHP_EOL
. '* ATTENTION PENSEZ A UTILISER application::$_bdd->protect_var(); */' . PHP_EOL
. '* ATTENTION, PENSEZ A UTILISER application::$_bdd->protect_var(); */' . PHP_EOL
. 'public static function get_table_ordored_array($where = "") {' . PHP_EOL
. ' $data = [];' . PHP_EOL
. ' foreach (' . self::$_table . '::get_table_array($where) as $value) {' . PHP_EOL
Expand Down Expand Up @@ -283,7 +283,7 @@ private static function get_class() {

//génére la fonction statique ( static ) get_json_object
$class .= "/** Retourne le contenu de la table sous forme d'un objet json (utile pour les services) " . PHP_EOL
. '* ATTENTION PENSEZ A UTILISER application::$_bdd->protect_var(); ' . PHP_EOL
. '* ATTENTION, PENSEZ A UTILISER application::$_bdd->protect_var(); ' . PHP_EOL
. '* @return string Objet json */' . PHP_EOL
. 'public static function get_json_object($where = "") {' . PHP_EOL
. ' return json_encode(' . self::$_table . '::get_table_ordored_array($where));' . PHP_EOL
Expand Down

0 comments on commit 7e0aada

Please sign in to comment.