Initial commit

This commit is contained in:
2019-10-13 18:38:03 +02:00
commit 759eb88ef8
10124 changed files with 838037 additions and 0 deletions

14
models/Settings.php Normal file
View File

@@ -0,0 +1,14 @@
<?php namespace NicoSt\GCalendar\Models;
use Model;
class Settings extends Model {
public $implement = ['System.Behaviors.SettingsModel'];
// A unique code
public $settingsCode = 'g-calendar';
// Reference to field configuration
public $settingsFields = 'fields.yaml';
}