-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlugin.php
executable file
·83 lines (68 loc) · 1.8 KB
/
Plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
namespace Plugins\Accio\AdsManager;
use Illuminate\Support\Facades\Event;
use Illuminate\Support\Facades\Schema;
use Accio\App\Interfaces\PluginInterface;
use Accio\App\Traits\PluginTrait;
use Symfony\Component\Console\Command\Command;
class Plugin implements PluginInterface {
use PluginTrait;
/**
* Saves post data
* @var object $modelMetaData
*/
private $modelMetaData;
/**
* SEO Settings
* @var array $settings
*/
private $settings;
/**
* The model where we will get meta data from
* @var object $model
*/
private $model;
/**
* Register method, called when the plugin is first registered.
*
* @return void
*/
public function register(){
}
/**
* @param array $data from request
* @param object $model saved data ( post object )
*/
public function store($data, $post){
}
/**
* Do something after all plugins have been loaded,
*
* @return void
*/
public function boot(){
}
/**
* @param Command $command
* @return bool
*/
public function install(Command $command){
if(!Schema::hasTable('accio_ads_manager')) {
Schema::create('accio_ads_manager', function($table) {
$table->increments("adID");
$table->string("title", 70);
$table->string("slug", 45)->nullable();
$table->string("belongsTo", 30);
$table->integer("belongsToID");
$table->string("displayOn", 30);
$table->text("embed")->nullable();
$table->json("postIDs")->nullable();
$table->timestamps();
});
}
return true;
}
public function update(){
return true;
}
}