mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
Remove app/Models/Dashboard.php (this should have been done in the previous commit)
This commit is contained in:
parent
51c04ab1e4
commit
a71404bb09
1 changed files with 0 additions and 87 deletions
|
@ -1,87 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Models;
|
|
||||||
|
|
||||||
class Dashboard
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Dashboard Menu
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public static $menu = [
|
|
||||||
[
|
|
||||||
'title' => 'Blog',
|
|
||||||
'type' => 'edit',
|
|
||||||
'model' => 'blog'
|
|
||||||
],
|
|
||||||
|
|
||||||
[
|
|
||||||
'title' => 'Form Submissions',
|
|
||||||
|
|
||||||
'submenu' => [
|
|
||||||
[
|
|
||||||
'title' => 'Contact',
|
|
||||||
'type' => 'view',
|
|
||||||
'model' => 'contact'
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'title' => 'Subscriptions',
|
|
||||||
'type' => 'view',
|
|
||||||
'model' => 'subscriptions'
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Authors (Credits Page)
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public static $author_credits = [
|
|
||||||
[ 'name' => 'Kevin MacMartin', 'url' => 'https://github.com/prurigro' ]
|
|
||||||
];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Libraries (Credits Page)
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public static $library_credits = [
|
|
||||||
[ 'name' => 'Bootstrap', 'url' => 'https://getbootstrap.com' ],
|
|
||||||
[ 'name' => 'Font Awesome', 'url' => 'https://fontawesome.com' ],
|
|
||||||
[ 'name' => 'GreenSock', 'url' => 'https://greensock.com/gsap' ],
|
|
||||||
[ 'name' => 'jQuery', 'url' => 'https://jquery.org' ],
|
|
||||||
[ 'name' => 'List.js', 'url' => 'http://listjs.com' ],
|
|
||||||
[ 'name' => 'pickadate.js', 'url' => 'http://amsul.ca/pickadate.js/' ],
|
|
||||||
[ 'name' => 'Popper.js', 'url' => 'https://popper.js.org' ],
|
|
||||||
[ 'name' => 'SimpleMDE Markdown Editor', 'url' => 'https://simplemde.com' ],
|
|
||||||
[ 'name' => 'Sortable', 'url' => 'https://github.com/RubaXa/Sortable' ],
|
|
||||||
[ 'name' => 'SpinKit', 'url' => 'http://tobiasahlin.com/spinkit/' ],
|
|
||||||
[ 'name' => 'Vue.js', 'url' => 'https://vuejs.org' ],
|
|
||||||
[ 'name' => 'what-input', 'url' => 'https://github.com/ten1seven/what-input' ]
|
|
||||||
];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Retrieve a Dashboard Model
|
|
||||||
*
|
|
||||||
* @return model
|
|
||||||
*/
|
|
||||||
public static function getModel($model, $type = null)
|
|
||||||
{
|
|
||||||
$model_name = ucfirst($model);
|
|
||||||
|
|
||||||
if (file_exists(app_path() . '/Models/' . $model_name . '.php')) {
|
|
||||||
$model_class = 'App\\Models\\' . ucfirst($model);
|
|
||||||
|
|
||||||
if ($type != null && $type != $model_class::$dashboard_type) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $model_class;
|
|
||||||
} else {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue