mirror of
https://github.com/AlexKrunch/AnonIB-3D.git
synced 2024-11-16 09:31:05 -05:00
28 lines
547 B
PHP
28 lines
547 B
PHP
|
<?php
|
||
|
|
||
|
namespace Lazer\Classes\Helpers;
|
||
|
|
||
|
include "File.class.php";
|
||
|
|
||
|
/**
|
||
|
* Data managing class
|
||
|
*
|
||
|
* @category Helpers
|
||
|
* @author Grzegorz Kuźnik
|
||
|
* @copyright (c) 2013, Grzegorz Kuźnik
|
||
|
* @license http://opensource.org/licenses/MIT The MIT License
|
||
|
* @link https://github.com/Greg0/Lazer-Database GitHub Repository
|
||
|
*/
|
||
|
class Data extends File {
|
||
|
|
||
|
public static function table($name)
|
||
|
{
|
||
|
$file = new Data;
|
||
|
$file->name = $name;
|
||
|
$file->setType('data');
|
||
|
|
||
|
return $file;
|
||
|
}
|
||
|
|
||
|
}
|