
remove dependence on jQuery add image delete Admin ui fix for mobile image updates to new style update comments
21 lines
444 B
PHP
21 lines
444 B
PHP
<?php
|
|
/**
|
|
* app/resources/models/example.php
|
|
*
|
|
* This is an example model.
|
|
*
|
|
* @version 5.0.1
|
|
* @author Joey Kimsey <Joey@thetempusproject.com>
|
|
* @link https://TheTempusProject.com
|
|
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
|
|
*/
|
|
namespace TheTempusProject\Models;
|
|
|
|
use TheTempusProject\Bedrock\Classes\Model;
|
|
|
|
class Example extends Model {
|
|
public function __construct() {
|
|
parent::__construct();
|
|
}
|
|
}
|