. * * @author TechFuze * @copyright Copyright (c) 2013 - 2015, 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; /** * Example model to show how to use models * * This model connects to an example table if present in the database * @package net.techfuze.fuzeworks.application.model * @author Abel Hoogeveen * @copyright Copyright (c) 2013 - 2015, Techfuze. (http://techfuze.net) */ class Example extends Model{ public function __construct(&$core){ parent::__construct($core); $this->setType('core/databaseutils', 'Model'); $this->table = 'example'; } } ?>