-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathqa-plugin.php
More file actions
24 lines (20 loc) · 793 Bytes
/
qa-plugin.php
File metadata and controls
24 lines (20 loc) · 793 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
<?php
/*
Plugin Name: Simple Ads Manager
Plugin URI: https://github.com/ProThoughts/q2a-simple-ads-manager
Plugin Description: Manage HTML ads
Plugin Version: 1.2
Plugin Date: 2016-10-23
Plugin Author: ProThoughts
Plugin Author URI: http://www.ProThoughts.com/
Plugin License: GPLv2
Plugin Minimum Question2Answer Version: 1.6
Plugin Update Check URI: https://raw.githubusercontent.com/ProThoughts/q2a-simple-ads-manager/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_layer('qa-admanager-layer.php', 'Simple Ads Manager');
qa_register_plugin_module('module', 'qa-admanager-options.php', 'pt_qa_simple_admanager', 'Simple Ads Manager Options');
?>