-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathqa-plugin.php
29 lines (23 loc) · 945 Bytes
/
qa-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
<?php
/*
Plugin Name: Simple Slider
Plugin URI: https://github.com/Jacksiro/Q2A-Simple-Slider-Plugin
Plugin Description: A simple image slider for the tops of pages, showing titles, descriptions and links.
Plugin Version: 1.1
Plugin Date: 2017-05-10
Plugin Author: Jackson Siro
Plugin Author URI: https://github.com/jacksiro/
Plugin License: GPLv3+
Plugin Minimum Question2Answer Version: 1.6
Plugin Update Check URI: https://github.com/Jacksiro/Q2A-Simple-Slider-Plugin/master/qa-plugin.php
*/
if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
header('Location: ../../');
exit;
}
qa_register_plugin_phrases('simple-slider-lang-*.php', 'ss_lang');
qa_register_plugin_layer('simple-slider-layer.php', 'Simple Slider Layer');
qa_register_plugin_module('widget', 'simple-slider.php', 'simple_slider', 'Simple Slider');
/*
Omit PHP closing tag to help avoid accidental output
*/