-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
33 lines (25 loc) · 749 Bytes
/
index.php
File metadata and controls
33 lines (25 loc) · 749 Bytes
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
<?php
/*
* Copyright (c) 2013 Baptiste Lepers
* Released under MIT License
*
* Feedback - Entry point
*/
class Pages_Comments_Index {
public static $description = "Comment Plugin";
public static $isOptional = true;
public static $showOnMenu = false;
public static function setupAutoload() {
AutoLoader::$autoload_path[] = "./pages/comments/php/";
}
static public function getOptions() {
return array(
array('id' => 'disqus_id', 'type' => 'text', 'cat' => 'Comment Plugin', 'default' => '', 'export' => true),
);
}
static public function getUserScripts() {
return array('./admin/pages/comments/scripts/jgallery.comments.js');
}
static public function mainAction() {
}
};