29 public const REGEX =
"/([a-z]*)\\((\\d*)\\)/u";
53 public function __construct(
string $table_name,
string $class_name)
63 $ilDBStatement = self::getDB()->query($sql);
64 while (
$data = self::getDB()->fetchObject($ilDBStatement)) {
72 require_once('./components/ILIAS/ActiveRecord/class.ActiveRecord.php'); 80 class {CLASS_NAME} extends ActiveRecord { 86 static function returnDbTableName() { 87 return '{TABLE_NAME}'; 93 public function getConnectorContainerName() { 94 return '{TABLE_NAME}'; 98 [
'{CLASS_NAME}',
'{TABLE_NAME}'],
108 $member .=
' * @con_' . $name .
' ' . $value .
"\n";
112 protected \${FIELD_NAME}; 116 $member = str_replace([
'{FIELD_NAME}',
'{DECLARATION}'], [$str->Field,
' '], $member);
118 $all_members .= $member;
127 header(
'Content-type: application/x-httpd-php');
128 header(
"Content-Disposition: attachment; filename=\"class." . $this->
getClassName() .
".php\"");
143 if ($field->Null ===
'NO') {
147 if ($field->Key ===
'PRI') {
156 preg_match(self::REGEX, $field_name, $matches);
158 return self::$field_map[$matches[1]];
166 $field_type = self::lookupFieldType($field_name);
168 preg_match(self::REGEX, $field_name, $matches);
170 if (self::$length_map[$field_type][$matches[2]]) {
171 return self::$length_map[$field_type][$matches[2]];
212 if (!in_array($structure->Field, $this->ids)) {
214 $this->ids[] = $structure->Field;
setTableName(string $table_name)
static array static array $length_map
returnAttributesForField(stdClass $field)
static lookupFieldType(string $field_name)
setClassName(string $class_name)
const FIELD_TYPE_TIMESTAMP
static lookupFieldLength(string $field_name)
setStructure(array $structure)
addStructure(stdClass $structure)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(string $table_name, string $class_name)