. * * @author TechFuze * @copyright Copyright (c) 2013 - 2016, Techfuze. (http://techfuze.net) * @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/) * @license http://opensource.org/licenses/GPL-3.0 GPLv3 License * * @link http://fuzeworks.techfuze.net * @since Version 0.0.1 * * @version Version 0.0.1 */ namespace Application\Model; use FuzeWorks\Model; /** * SQLTable model. * * This model connects to the querybuilder and is used to quickly interact with SQL tables. * * Start building a query AND DON'T FORGET TO USE setTable() before executing the query * * @author Abel Hoogeveen * @copyright Copyright (c) 2013 - 2016, Techfuze. (http://techfuze.net) */ class Sqltable extends Model { public function __construct() { $this->setType('core/databaseutils', 'Model'); $this->fields = '*'; $this->table = 'table'; } }