Skip to content

Commit 492930b

Browse files
author
Mark Vincent
authored
Merge pull request #22 from WildcardSearch/maintenance
2.0.4 Release
2 parents f0212e6 + aabfb41 commit 492930b

File tree

3 files changed

+48
-41
lines changed

3 files changed

+48
-41
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## YourCode 2.0.3
1+
## YourCode 2.0.4
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*

Upload/inc/plugins/yourcode/forum.php

+37-31
Original file line numberDiff line numberDiff line change
@@ -24,55 +24,61 @@ function yourcode_run($message)
2424
global $parser;
2525
static $yourcode;
2626

27-
// if the parser's MyCode cache is anything other than the default value then we have already been here
28-
if($parser->mycode_cache == 0)
27+
/*
28+
* if the parser isn't valid or its MyCode cache is
29+
* anything other than the default value then there is
30+
* nothing to do
31+
*/
32+
if ($parser instanceof postParser != true ||
33+
$parser->mycode_cache !== 0) {
34+
return $message;
35+
}
36+
37+
// we have to consider several sequential iterations calling the method we have hooked into
38+
if(!isset($yourcode) || !is_array($yourcode) || empty($yourcode))
2939
{
30-
// we have to consider several sequential iterations calling the method we have hooked into
31-
if(!isset($yourcode) || !is_array($yourcode) || empty($yourcode))
32-
{
33-
// load the cache if this is the first run
34-
global $cache;
35-
$yourcode = $cache->read('yourcode');
36-
}
40+
// load the cache if this is the first run
41+
global $cache;
42+
$yourcode = $cache->read('yourcode');
43+
}
3744

38-
if(is_array($yourcode['active']['restricted_view']['standard']) && !empty($yourcode['active']['restricted_view']['standard']))
45+
if(is_array($yourcode['active']['restricted_view']['standard']) && !empty($yourcode['active']['restricted_view']['standard']))
46+
{
47+
foreach($yourcode['active']['restricted_view']['standard'] as $code)
3948
{
40-
foreach($yourcode['active']['restricted_view']['standard'] as $code)
49+
if($code['can_view'])
4150
{
42-
if($code['can_view'])
51+
if(!yourcode_check_user_permissions($code['can_view']))
4352
{
44-
if(!yourcode_check_user_permissions($code['can_view']))
45-
{
46-
$code['replacement'] = $code['alt_replacement'];
47-
}
53+
$code['replacement'] = $code['alt_replacement'];
4854
}
49-
$yourcode['active']['simple']['standard']['find'][] = $code['find'];
50-
$yourcode['active']['simple']['standard']['replacement'][] = $code['replacement'];
5155
}
56+
$yourcode['active']['simple']['standard']['find'][] = $code['find'];
57+
$yourcode['active']['simple']['standard']['replacement'][] = $code['replacement'];
5258
}
59+
}
5360

54-
$yourcode['active']['simple']['standard_count'] = count($yourcode['active']['simple']['standard']);
61+
$yourcode['active']['simple']['standard_count'] = count($yourcode['active']['simple']['standard']);
5562

56-
if(is_array($yourcode['active']['restricted_view']['nestable']) && !empty($yourcode['active']['restricted_view']['nestable']))
63+
if(is_array($yourcode['active']['restricted_view']['nestable']) && !empty($yourcode['active']['restricted_view']['nestable']))
64+
{
65+
foreach($yourcode['active']['restricted_view']['nestable'] as $code)
5766
{
58-
foreach($yourcode['active']['restricted_view']['nestable'] as $code)
67+
if($code['can_view'])
5968
{
60-
if($code['can_view'])
69+
if(!yourcode_check_user_permissions($code['can_view']))
6170
{
62-
if(!yourcode_check_user_permissions($code['can_view']))
63-
{
64-
$code['replacement'] = $code['alt_replacement'];
65-
}
71+
$code['replacement'] = $code['alt_replacement'];
6672
}
67-
$yourcode['active']['simple']['nestable'][] = array('find' => $code['find'], 'replacement' => $code['replacement']);
6873
}
74+
$yourcode['active']['simple']['nestable'][] = array('find' => $code['find'], 'replacement' => $code['replacement']);
6975
}
76+
}
7077

71-
$yourcode['active']['simple']['nestable_count'] = count($yourcode['active']['simple']['nestable']);
72-
$yourcode['active']['simple']['callback_count'] = count($yourcode['active']['simple']['callback']);
78+
$yourcode['active']['simple']['nestable_count'] = count($yourcode['active']['simple']['nestable']);
79+
$yourcode['active']['simple']['callback_count'] = count($yourcode['active']['simple']['callback']);
7380

74-
$parser->mycode_cache = $yourcode['active']['simple'];
75-
}
81+
$parser->mycode_cache = $yourcode['active']['simple'];
7682

7783
// give back what was freely given to us
7884
return $message;

Upload/inc/plugins/yourcode/install.php

+10-9
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,10 @@ function yourcode_info()
2828
if(yourcode_is_installed())
2929
{
3030
$extra_links = "<ul><li style=\"list-style-image: url(styles/{$cp_style}/images/yourcode/manage.gif)\"><a href=\"" . YOURCODE_URL . "\" title=\"{$lang->yourcode_admin_view}\">{$lang->yourcode_admin_view}</a></li></ul>";
31-
}
32-
else
33-
{
34-
$extra_links = '<br />';
35-
}
3631

37-
$button_pic = "styles/{$cp_style}/images/yourcode/donate.gif";
38-
$border_pic = "styles/{$cp_style}/images/yourcode/pixel.gif";
39-
$yourcode_description = <<<EOF
32+
$button_pic = "styles/{$cp_style}/images/yourcode/donate.gif";
33+
$border_pic = "styles/{$cp_style}/images/yourcode/pixel.gif";
34+
$yourcode_description = <<<EOF
4035
<table width="100%">
4136
<tbody>
4237
<tr>
@@ -54,6 +49,12 @@ function yourcode_info()
5449
</tbody>
5550
</table>
5651
EOF;
52+
}
53+
else
54+
{
55+
$extra_links = '<br />';
56+
$yourcode_description = $lang->yourcode_plugin_description;
57+
}
5758

5859
$name = <<<EOF
5960
<span style="font-familiy: arial; font-size: 1.5em; color: #BB0000; text-shadow: 2px 2px 2px #880000;">{$lang->yourcode}</span>
@@ -69,7 +70,7 @@ function yourcode_info()
6970
"website" => 'https://github.com/WildcardSearch/YourCode',
7071
"author" => $author,
7172
"authorsite" => 'http://www.rantcentralforums.com',
72-
"version" => '2.0.3',
73+
"version" => '2.0.4',
7374
"compatibility" => '18*',
7475
"guid" => '36a18ebc285a181a42561141adfd1d7f',
7576
);

0 commit comments

Comments
 (0)