Anonymous 3D Imageboard http://cyberia.digital/
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.

28 lines
547B

  1. <?php
  2. namespace Lazer\Classes\Helpers;
  3. include "File.class.php";
  4. /**
  5. * Data managing class
  6. *
  7. * @category Helpers
  8. * @author Grzegorz Kuźnik
  9. * @copyright (c) 2013, Grzegorz Kuźnik
  10. * @license http://opensource.org/licenses/MIT The MIT License
  11. * @link https://github.com/Greg0/Lazer-Database GitHub Repository
  12. */
  13. class Data extends File {
  14. public static function table($name)
  15. {
  16. $file = new Data;
  17. $file->name = $name;
  18. $file->setType('data');
  19. return $file;
  20. }
  21. }