You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
754 B
37 lines
754 B
<?php
|
|
|
|
/**
|
|
*
|
|
* @license see /license.txt
|
|
* @author Laurent Opprecht <laurent@opprecht.info>, Nicolas Rod for the University of Geneva
|
|
*/
|
|
|
|
echo '<?php';
|
|
?>
|
|
|
|
/**
|
|
*
|
|
* Model for table <?php echo $table_name ?>
|
|
*
|
|
* @copyright (c) 2012 University of Geneva
|
|
* @license GNU General Public License - http://www.gnu.org/copyleft/gpl.html
|
|
* @author Laurent Opprecht <laurent@opprecht.info>
|
|
*/
|
|
class <?php echo $class_name ?>
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
/**
|
|
* Store for <?php echo $class_name ?> objects. Interact with the database.
|
|
*
|
|
* @copyright (c) 2012 University of Geneva
|
|
* @license GNU General Public License - http://www.gnu.org/copyleft/gpl.html
|
|
* @author Laurent Opprecht <laurent@opprecht.info>
|
|
*/
|
|
class <?php echo $class_name ?>Store extends Store
|
|
{
|
|
|
|
}
|