1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/limesurvey_ynh.git synced 2024-09-03 19:36:32 +02:00
limesurvey_ynh/sources/application/models/Dynamic.php

45 lines
1,014 B
PHP

<?php
/**
* This class implements the basis for dynamic models.
* In this implementation class definitions are generated dynamically.
* This class and its descendants should be declared abstract!
*/
abstract class Dynamic extends LSActiveRecord
{
/**
* @var int The dynamic part of the class name.
*/
protected $dynamicId;
public function __construct($scenario = 'insert') {
list(,$this->dynamicId)=explode('_', get_class($this));
parent::__construct($scenario);
}
/**
*
* @param type $className
* @return Dynamic2
*/
public static function model($className = null) {
if (!isset($className))
{
$className = get_called_class();
}
elseif (is_numeric($className))
{
$className = get_called_class() . '_' . $className;
}
return parent::model($className);
}
public static function create($id, $scenario = 'insert')
{
$className = get_called_class() . '_' . $id;
return new $className($scenario);
}
}
?>