1 | <?php |
||
14 | class EvernoteSettings extends DataObject { |
||
|
|||
15 | |||
16 | private static $db = array( |
||
17 | "APIKey" => "Varchar", |
||
18 | "APISecret" => "Varchar", |
||
19 | "CallbackURL" => "Varchar(512)", |
||
20 | "Sandbox" => "Boolean", |
||
21 | "China" => "Boolean" |
||
22 | ); |
||
23 | |||
24 | /** |
||
25 | * Default permission to check for 'LoggedInUsers' to create or edit pages |
||
26 | * |
||
27 | * @var array |
||
28 | * @config |
||
29 | */ |
||
30 | private static $required_permission = array('CMS_ACCESS_CMSMain', 'CMS_ACCESS_LeftAndMain'); |
||
31 | |||
32 | |||
33 | /** |
||
34 | * @return FieldList |
||
35 | */ |
||
36 | public function getCMSFields() { |
||
58 | |||
59 | /** |
||
60 | * Get the current Evernote Settings, and creates a new one through |
||
61 | * {@link make_evernote_settings()} if none is found. |
||
62 | * |
||
63 | * @return EvernoteSettings |
||
64 | */ |
||
65 | public static function current_Evernote_settings() { |
||
70 | |||
71 | /** |
||
72 | * Create EvernoteSettings with defaults from language file. |
||
73 | * |
||
74 | * @return EvernoteSettings |
||
75 | */ |
||
76 | public static function make_evernote_settings() { |
||
82 | |||
83 | /** |
||
84 | * Get the actions that are sent to the CMS. |
||
85 | * |
||
86 | * In your extensions: updateEditFormActions($actions) |
||
87 | * |
||
88 | * @return FieldList |
||
89 | */ |
||
90 | public function getCMSActions() { |
||
104 | } |
||
105 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.