Skip to content

Commit 2a6e343

Browse files
author
Mark Vincent
authored
Merge pull request #26 from WildcardSearch/minor
2.1 Release
2 parents 492930b + 7ea9dd1 commit 2a6e343

22 files changed

+1115
-1146
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## YourCode 2.0.4
1+
## YourCode 2.1
22
for MyBB 1.8.x
33

44
*Forget MyCode. Take control of YourCode-- a much better way of handling BB Code for MyBB forums*
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/**
2+
* ACP edit functions
3+
*
4+
* @category MyBB Plugins
5+
* @package YourCode
6+
* @author Mark Vincent <[email protected]>
7+
* @copyright 2012-2014 Mark Vincent
8+
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
9+
* @link https://github.com/WildcardSearch/YourCode
10+
* @since 2.1
11+
*/
12+
13+
!function($) {
14+
"use strict";
15+
16+
/**
17+
* initialize
18+
*
19+
* @return void
20+
*/
21+
function init() {
22+
$("#callback").change(callbackChange);
23+
}
24+
25+
/**
26+
* link the nestable and callback settings
27+
*
28+
* @return void
29+
*/
30+
function callbackChange() {
31+
if (this.checked) {
32+
$("#nestable").prop("checked", "checked");
33+
}
34+
}
35+
36+
$(init);
37+
}(jQuery);

Upload/admin/jscripts/yourcode/yourcode_inline.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ var YourCode = (function(yc) {
148148
updateCheckCount();
149149
}
150150

151-
$(document).ready(init);
151+
$(init);
152152

153153
// the public method
154154
yc.inline = {

Upload/admin/jscripts/yourcode/yourcode_sandbox.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ var YourCode = (function(yc) {
1717
/**
1818
* constructor
1919
*
20-
* @param string the XMLHTTP url
21-
* @param object the form elements
20+
* @param string XMLHTTP url
21+
* @param object form elements
2222
* @return void
2323
*/
2424
function Sandbox(url, elements) {
@@ -63,7 +63,7 @@ var YourCode = (function(yc) {
6363
(this.evalInput.prop("checked") ? '&eval=1' : '');
6464

6565
$.jGrowl("updating...");
66-
66+
6767
$.ajax({
6868
type: 'post',
6969
url: this.url,

Upload/inc/languages/english/admin/yourcode.lang.php

+10
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@
4949
$l['yourcode_exported'] = 'exported';
5050
$l['yourcode_updated'] = 'updated';
5151
$l['yourcode_created'] = 'created';
52+
$l['yourcode_activated'] = 'activated';
53+
$l['yourcode_deleted'] = 'deleted';
54+
$l['yourcode_deactivated'] = 'deactivated';
5255

5356
// acp
5457
$l['yourcode_admin_permissions_desc'] = 'Can use YourCode?';
@@ -99,13 +102,17 @@
99102
$l['yourcode_multi_line_desc'] = 'In this mode, the caret (^) and dollar ($) match before and after newlines.';
100103
$l['yourcode_eval'] = "eval()'d?";
101104
$l['yourcode_eval_desc'] = "In this mode the replacement is eval()'d after it has been matched. (Set this option to 'No' unless you know what you are doing.)";
105+
$l['yourcode_callback'] = "Callback?";
106+
$l['yourcode_callback_desc'] = "In this mode the match is sent to the named PHP function";
102107
$l['yourcode_active'] = 'Active';
103108
$l['yourcode_active_desc'] = 'Should this YourCode be effective now?';
104109
$l['yourcode_allowed_user_groups_use'] = 'Who can use this YourCode?';
105110
$l['yourcode_allowed_user_groups_use_desc'] = "When users that aren't allowed attempt to use the YourCode it is blanked from their post before it is inserted.";
106111
$l['yourcode_allowed_user_groups_view'] = 'Who can view this YourCode?';
107112
$l['yourcode_allowed_user_groups_view_desc'] = "When users that aren't allowed view posts in which the YourCode is used an alternate replacement is used.";
108113
$l['yourcode_all_user_groups'] = 'All User Groups';
114+
$l['yourcode_save_and_continue'] = 'Save and Continue Editing';
115+
$l['yourcode_save_and_return'] = 'Save and Return to Listing';
109116

110117
// tabs
111118
$l['yourcode_tab_general'] = 'General';
@@ -116,7 +123,9 @@
116123
// messages
117124
$l['yourcode_message_success'] = '{1} {2} successfully';
118125
$l['yourcode_message_fail'] = "{1} couldn't be {2} successfully";
126+
$l['yourcode_message_fail_because'] = "{1} couldn't be {2} successfully because it was already {2}";
119127
$l['yourcode_message_active_status'] = 'YourCode is currently {1}, click to {2}';
128+
$l['yourcode_module_message_active_status'] = 'Module is currently {1}, click to {2}';
120129

121130
// import
122131
$l['yourcode_import_select_file_desc'] = 'Use this form to import YourCode that was exported from this plugin.';
@@ -127,6 +136,7 @@
127136
$l['yourcode_import_file_upload_error'] = 'There was a problem uploading the file.';
128137
$l['yourcode_import_file_empty'] = 'The file you uploaded is empty or currupt.';
129138
$l['yourcode_import_save_success'] = 'Successfully imported {1} YourCode.';
139+
$l['yourcode_xml_count'] = '{1} total YourCode in XML';
130140

131141
$l['yourcode_delete_warning_clear'] = "Proceeding will result in all YourCode being deleted.\\nIt is recommended to backup first to avoid losing your work.\\nProceed?";
132142
$l['yourcode_delete_warning_simple'] = 'Do you want to permanently delete this YourCode?';

Upload/inc/plugins/yourcode.php

+5-7
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,18 @@
1212
*/
1313

1414
// disallow direct access to this file for security reasons
15-
if(!defined('IN_MYBB'))
16-
{
15+
if (!defined('IN_MYBB')) {
1716
die('Direct initialization of this file is not allowed.<br /><br />Please make sure IN_MYBB is defined.');
1817
}
18+
1919
define('YOURCODE_MOD_URL', MYBB_ROOT. 'inc/plugins/yourcode/modules');
20+
define('YOURCODE_VERSION', '2.1');
2021
require_once MYBB_ROOT . 'inc/plugins/yourcode/functions.php';
2122

2223
// load the install/admin routines only if in ACP.
23-
if(defined('IN_ADMINCP'))
24-
{
24+
if (defined('IN_ADMINCP')) {
2525
require_once MYBB_ROOT . 'inc/plugins/yourcode/acp.php';
26-
}
27-
else
28-
{
26+
} else {
2927
require_once MYBB_ROOT . 'inc/plugins/yourcode/forum.php';
3028
}
3129

0 commit comments

Comments
 (0)