-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.php
82 lines (54 loc) · 1.74 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
/*
Plugin Name: Custom Javascript
Plugin URI: http://scriptgeni.com/
Description: A plugin administration page to add custom javascript to Yourls
Version: 1.0
Author: ScriptGeni
Author URI: http://scriptgeni.com
*/
// No direct call
if( !defined( 'YOURLS_ABSPATH' ) ) die();
// Add the inline style
yourls_add_action( 'html_footer', 'yourls_custom_javascript' );
function yourls_custom_javascript() {
$custom_js_option = yourls_get_option( 'custom_js_option' );
echo <<<JS
<script>$custom_js_option</script>
JS;
}
// Register our plugin admin page
yourls_add_action( 'plugins_loaded', 'yourls_custom_js' );
function yourls_custom_js() {
yourls_register_plugin_page( 'custom_js_page', 'Custom Javascript Settings', 'yourls_custom_js_do_page' );
// parameters: page slug, page title, and function that will display the page itself
}
// Display admin page
function yourls_custom_js_do_page() {
// Check if a form was submitted
if( isset( $_POST['custom_js_option'] ) ) {
// Check nonce
yourls_verify_nonce( 'custom_js_page' );
// Process form
yourls_custom_js_update_option();
}
// Get value from database
$custom_js_option = yourls_get_option( 'custom_js_option' );
// Create nonce
$nonce = yourls_create_nonce( 'custom_js_page' );
echo <<<HTML
<h2>Javascript code</h2>
<p>Add extra JS code</p>
<form method="post">
<input type="hidden" name="nonce" value="$nonce" />
<p><textarea name="custom_js_option">$custom_js_option</textarea></p>
<p><input type="submit" value="Update Javascript" /></p>
</form>
HTML;
}
// Update option in database
function yourls_custom_js_update_option() {
$custom_js = $_POST['custom_js_option'];
// Update value in database
yourls_update_option( 'custom_js_option', $custom_js );
}