Vergleich admin/modules/config/mycode.php - 1.8.11 - 1.8.30

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 20Zeile 20

if($mybb->input['action'] == "toggle_status")
{


if($mybb->input['action'] == "toggle_status")
{

	if(!verify_post_check($mybb->input['my_post_key']))

	if(!verify_post_check($mybb->get_input('my_post_key')))

	{
flash_message($lang->invalid_post_verify_key2, 'error');
admin_redirect("index.php?module=config-mycode");

	{
flash_message($lang->invalid_post_verify_key2, 'error');
admin_redirect("index.php?module=config-mycode");

Zeile 85Zeile 85

if($mybb->input['action'] == "add")
{


if($mybb->input['action'] == "add")
{

	$plugins->run_hooks("admin_config_mycode_add");

	$sandbox = array();





 
	$plugins->run_hooks("admin_config_mycode_add");


	if($mybb->request_method == "post")
{
if(!trim($mybb->input['title']))

	if($mybb->request_method == "post")
{
if(!trim($mybb->input['title']))

		{

		{

			$errors[] = $lang->error_missing_title;
}


			$errors[] = $lang->error_missing_title;
}


Zeile 107Zeile 109
		}

if(!trim($mybb->input['replacement']))

		}

if(!trim($mybb->input['replacement']))

		{

		{

			$errors[] = $lang->error_missing_replacement;
}


			$errors[] = $lang->error_missing_replacement;
}


		if($mybb->input['test'])

		if($mybb->get_input('test'))

		{
$errors[] = $lang->changes_not_saved;
$sandbox = test_regex($mybb->input['regex'], $mybb->input['replacement'], $mybb->input['test_value']);

		{
$errors[] = $lang->changes_not_saved;
$sandbox = test_regex($mybb->input['regex'], $mybb->input['replacement'], $mybb->input['test_value']);

Zeile 132Zeile 134

$plugins->run_hooks("admin_config_mycode_add_commit");



$plugins->run_hooks("admin_config_mycode_add_commit");


			$cache->update_mycode();


			$cache->update_mycode();


			// Log admin action

			// Log admin action

			log_admin_action($cid, htmlspecialchars_uni($mybb->input['title']));

			log_admin_action($cid, $mybb->input['title']);


flash_message($lang->success_added_mycode, 'success');
admin_redirect('index.php?module=config-mycode');


flash_message($lang->success_added_mycode, 'success');
admin_redirect('index.php?module=config-mycode');

Zeile 153Zeile 155
		'link' => "index.php?module=config-mycode&action=add",
'description' => $lang->add_new_mycode_desc
);

		'link' => "index.php?module=config-mycode&action=add",
'description' => $lang->add_new_mycode_desc
);





	$page->extra_header .= "
<script type=\"text/javascript\">
var my_post_key = '".$mybb->post_code."';
lang.mycode_sandbox_test_error = \"{$lang->mycode_sandbox_test_error}\";
</script>";

	$page->extra_header .= "
<script type=\"text/javascript\">
var my_post_key = '".$mybb->post_code."';
lang.mycode_sandbox_test_error = \"{$lang->mycode_sandbox_test_error}\";
</script>";





	$page->add_breadcrumb_item($lang->add_new_mycode);
$page->output_header($lang->custom_mycode." - ".$lang->add_new_mycode);
$page->output_nav_tabs($sub_tabs, 'add_new_mycode');

	$page->add_breadcrumb_item($lang->add_new_mycode);
$page->output_header($lang->custom_mycode." - ".$lang->add_new_mycode);
$page->output_nav_tabs($sub_tabs, 'add_new_mycode');

Zeile 175Zeile 177

$form = new Form("index.php?module=config-mycode&amp;action=add", "post", "add");
$form_container = new FormContainer($lang->add_mycode);


$form = new Form("index.php?module=config-mycode&amp;action=add", "post", "add");
$form_container = new FormContainer($lang->add_mycode);

	$form_container->output_row($lang->title." <em>*</em>", '', $form->generate_text_box('title', $mybb->input['title'], array('id' => 'title')), 'title');
$form_container->output_row($lang->short_description, '', $form->generate_text_box('description', $mybb->input['description'], array('id' => 'description')), 'description');
$form_container->output_row($lang->regular_expression." <em>*</em>", $lang->regular_expression_desc.'<br /><strong>'.$lang->example.'</strong> \[b\](.*?)\[/b\]', $form->generate_text_area('regex', $mybb->input['regex'], array('id' => 'regex')), 'regex');
$form_container->output_row($lang->replacement." <em>*</em>", $lang->replacement_desc.'<br /><strong>'.$lang->example.'</strong> &lt;strong&gt;$1&lt;/strong&gt;', $form->generate_text_area('replacement', $mybb->input['replacement'], array('id' => 'replacement')), 'replacement');
$form_container->output_row($lang->enabled." <em>*</em>", '', $form->generate_yes_no_radio('active', $mybb->input['active']));
$form_container->output_row($lang->parse_order, $lang->parse_order_desc, $form->generate_numeric_field('parseorder', $mybb->input['parseorder'], array('id' => 'parseorder', 'min' => 0)), 'parseorder');

	$form_container->output_row($lang->title." <em>*</em>", '', $form->generate_text_box('title', $mybb->get_input('title'), array('id' => 'title')), 'title');
$form_container->output_row($lang->short_description, '', $form->generate_text_box('description', $mybb->get_input('description'), array('id' => 'description')), 'description');
$form_container->output_row($lang->regular_expression." <em>*</em>", $lang->regular_expression_desc.'<br /><strong>'.$lang->example.'</strong> \[b\](.*?)\[/b\]', $form->generate_text_area('regex', $mybb->get_input('regex'), array('id' => 'regex')), 'regex');
$form_container->output_row($lang->replacement." <em>*</em>", $lang->replacement_desc.'<br /><strong>'.$lang->example.'</strong> &lt;strong&gt;$1&lt;/strong&gt;', $form->generate_text_area('replacement', $mybb->get_input('replacement'), array('id' => 'replacement')), 'replacement');
$form_container->output_row($lang->enabled." <em>*</em>", '', $form->generate_yes_no_radio('active', $mybb->get_input('active')));
$form_container->output_row($lang->parse_order, $lang->parse_order_desc, $form->generate_numeric_field('parseorder', $mybb->get_input('parseorder'), array('id' => 'parseorder', 'min' => 0)), 'parseorder');

	$form_container->end();

$buttons[] = $form->generate_submit_button($lang->save_mycode);
$form->output_submit_wrapper($buttons);

// Sandbox

	$form_container->end();

$buttons[] = $form->generate_submit_button($lang->save_mycode);
$form->output_submit_wrapper($buttons);

// Sandbox

 
	$sandbox_actual = isset($sandbox['actual']) ? $sandbox['actual'] : null;


	echo "<br />\n";
$form_container = new FormContainer($lang->sandbox);
$form_container->output_row($lang->sandbox_desc);

	echo "<br />\n";
$form_container = new FormContainer($lang->sandbox);
$form_container->output_row($lang->sandbox_desc);

	$form_container->output_row($lang->test_value, $lang->test_value_desc, $form->generate_text_area('test_value', $mybb->input['test_value'], array('id' => 'test_value'))."<br />".$form->generate_submit_button($lang->test, array('id' => 'test', 'name' => 'test')), 'test_value');
$form_container->output_row($lang->result_html, $lang->result_html_desc, $form->generate_text_area('result_html', $sandbox['html'], array('id' => 'result_html', 'disabled' => 1)), 'result_html');
$form_container->output_row($lang->result_actual, $lang->result_actual_desc, "<div id=\"result_actual\">{$sandbox['actual']}</div>");

	$form_container->output_row($lang->test_value, $lang->test_value_desc, $form->generate_text_area('test_value', $mybb->get_input('test_value'), array('id' => 'test_value'))."<br />".$form->generate_submit_button($lang->test, array('id' => 'test', 'name' => 'test')), 'test_value');
$form_container->output_row($lang->result_html, $lang->result_html_desc, $form->generate_text_area('result_html', isset($sandbox['html']) ? $sandbox['html'] : null, array('id' => 'result_html', 'disabled' => 1)), 'result_html');
$form_container->output_row($lang->result_actual, $lang->result_actual_desc, "<div id=\"result_actual\">{$sandbox_actual}</div>");

	$form_container->end();
echo '<script type="text/javascript" src="./jscripts/mycode_sandbox.js"></script>';
echo '<script type="text/javascript">

	$form_container->end();
echo '<script type="text/javascript" src="./jscripts/mycode_sandbox.js"></script>';
echo '<script type="text/javascript">

Zeile 204Zeile 208
</script>';

$form->end();

</script>';

$form->end();





	$page->output_footer();
}


	$page->output_footer();
}


Zeile 218Zeile 222
		flash_message($lang->error_invalid_mycode, 'error');
admin_redirect("index.php?module=config-mycode");
}

		flash_message($lang->error_invalid_mycode, 'error');
admin_redirect("index.php?module=config-mycode");
}

 

$sandbox = array();


$plugins->run_hooks("admin_config_mycode_edit");


$plugins->run_hooks("admin_config_mycode_edit");





	if($mybb->request_method == "post")
{
if(!trim($mybb->input['title']))
{
$errors[] = $lang->error_missing_title;

	if($mybb->request_method == "post")
{
if(!trim($mybb->input['title']))
{
$errors[] = $lang->error_missing_title;

		}

if(!trim($mybb->input['regex']))

		}

if(!trim($mybb->input['regex']))

		{
$errors[] = $lang->error_missing_regex;
}

		{
$errors[] = $lang->error_missing_regex;
}





		$regex = str_replace("\x0", "", $mybb->input['regex']);


		$regex = str_replace("\x0", "", $mybb->input['regex']);


		if(check_existing_regex($regex))

		if(check_existing_regex($regex, $mycode))

		{
$errors[] = $lang->error_regex_already_available;
}

		{
$errors[] = $lang->error_regex_already_available;
}

Zeile 245Zeile 251
			$errors[] = $lang->error_missing_replacement;
}


			$errors[] = $lang->error_missing_replacement;
}


		if($mybb->input['test'])

		if($mybb->get_input('test'))

		{
$errors[] = $lang->changes_not_saved;
$sandbox = test_regex($mybb->input['regex'], $mybb->input['replacement'], $mybb->input['test_value']);

		{
$errors[] = $lang->changes_not_saved;
$sandbox = test_regex($mybb->input['regex'], $mybb->input['replacement'], $mybb->input['test_value']);

Zeile 269Zeile 275
			$cache->update_mycode();

// Log admin action

			$cache->update_mycode();

// Log admin action

			log_admin_action($mycode['cid'], htmlspecialchars_uni($mybb->input['title']));

			log_admin_action($mycode['cid'], $mybb->input['title']);


flash_message($lang->success_updated_mycode, 'success');
admin_redirect('index.php?module=config-mycode');


flash_message($lang->success_updated_mycode, 'success');
admin_redirect('index.php?module=config-mycode');

Zeile 318Zeile 324
	$form->output_submit_wrapper($buttons);

// Sandbox

	$form->output_submit_wrapper($buttons);

// Sandbox

 
	$sandbox_actual = isset($sandbox['actual']) ? $sandbox['actual'] : null;


	echo "<br />\n";
$form_container = new FormContainer($lang->sandbox);
$form_container->output_row($lang->sandbox_desc);

	echo "<br />\n";
$form_container = new FormContainer($lang->sandbox);
$form_container->output_row($lang->sandbox_desc);

	$form_container->output_row($lang->test_value, $lang->test_value_desc, $form->generate_text_area('test_value', $mybb->input['test_value'], array('id' => 'test_value'))."<br />".$form->generate_submit_button($lang->test, array('id' => 'test', 'name' => 'test')), 'test_value');
$form_container->output_row($lang->result_html, $lang->result_html_desc, $form->generate_text_area('result_html', $sandbox['html'], array('id' => 'result_html', 'disabled' => 1)), 'result_html');
$form_container->output_row($lang->result_actual, $lang->result_actual_desc, "<div id=\"result_actual\">{$sandbox['actual']}</div>");

	$form_container->output_row($lang->test_value, $lang->test_value_desc, $form->generate_text_area('test_value', $mybb->get_input('test_value'), array('id' => 'test_value'))."<br />".$form->generate_submit_button($lang->test, array('id' => 'test', 'name' => 'test')), 'test_value');
$form_container->output_row($lang->result_html, $lang->result_html_desc, $form->generate_text_area('result_html', isset($sandbox['html']) ? $sandbox['html'] : null, array('id' => 'result_html', 'disabled' => 1)), 'result_html');
$form_container->output_row($lang->result_actual, $lang->result_actual_desc, "<div id=\"result_actual\">{$sandbox_actual}</div>");

	$form_container->end();
echo '<script type="text/javascript" src="./jscripts/mycode_sandbox.js"></script>';
echo '<script type="text/javascript">

	$form_container->end();
echo '<script type="text/javascript" src="./jscripts/mycode_sandbox.js"></script>';
echo '<script type="text/javascript">

Zeile 354Zeile 362
	$plugins->run_hooks("admin_config_mycode_delete");

// User clicked no

	$plugins->run_hooks("admin_config_mycode_delete");

// User clicked no

	if($mybb->input['no'])

	if($mybb->get_input('no'))

	{
admin_redirect("index.php?module=config-mycode");
}

	{
admin_redirect("index.php?module=config-mycode");
}

Zeile 368Zeile 376
		$cache->update_mycode();

// Log admin action

		$cache->update_mycode();

// Log admin action

		log_admin_action($mycode['cid'], htmlspecialchars_uni($mycode['title']));

		log_admin_action($mycode['cid'], $mycode['title']);


flash_message($lang->success_deleted_mycode, 'success');
admin_redirect("index.php?module=config-mycode");


flash_message($lang->success_deleted_mycode, 'success');
admin_redirect("index.php?module=config-mycode");

	}
else
{

	}
else
{

		$page->output_confirm_action("index.php?module=config-mycode&amp;action=delete&amp;cid={$mycode['cid']}", $lang->confirm_mycode_deletion);
}
}

		$page->output_confirm_action("index.php?module=config-mycode&amp;action=delete&amp;cid={$mycode['cid']}", $lang->confirm_mycode_deletion);
}
}

Zeile 397Zeile 405
	);

$page->output_nav_tabs($sub_tabs, 'mycode');

	);

$page->output_nav_tabs($sub_tabs, 'mycode');

 

$query = $db->simple_select("mycode", "COUNT(cid) AS mycode");
$total_rows = $db->fetch_field($query, "mycode");

$pagenum = $mybb->get_input('page', MyBB::INPUT_INT);
if($pagenum)
{
$start = ($pagenum - 1) * 20;
$pages = ceil($total_rows / 20);
if($pagenum > $pages)
{
$start = 0;
$pagenum = 1;
}
}
else
{
$start = 0;
$pagenum = 1;
}


$table = new Table;
$table->construct_header($lang->title);
$table->construct_header($lang->controls, array('class' => 'align_center', 'width' => 150));



$table = new Table;
$table->construct_header($lang->title);
$table->construct_header($lang->controls, array('class' => 'align_center', 'width' => 150));


	$query = $db->simple_select("mycode", "*", "", array('order_by' => 'parseorder'));

	$query = $db->simple_select("mycode", "*", "", array('limit_start' => $start, 'limit' => 20, 'order_by' => 'parseorder'));

	while($mycode = $db->fetch_array($query))
{
if($mycode['active'] == 1)

	while($mycode = $db->fetch_array($query))
{
if($mycode['active'] == 1)

Zeile 438Zeile 466
	}

$table->output($lang->custom_mycode);

	}

$table->output($lang->custom_mycode);

 

echo "<br />".draw_admin_pagination($pagenum, "20", $total_rows, "index.php?module=config-mycode&amp;page={page}");


$page->output_footer();


$page->output_footer();

}

/**

}

/**

 * @param string $regex
* @param string $replacement
* @param string $test

 * @param string $regex
* @param string $replacement
* @param string $test

 *

 *

 * @return array
*/
function test_regex($regex, $replacement, $test)

 * @return array
*/
function test_regex($regex, $replacement, $test)

Zeile 460Zeile 490
/**
* Checks if a regex is already available
*

/**
* Checks if a regex is already available
*

 * @param string $regex
*


 * @param string $regex The regex to check
* @param array $current The currently edited MyCode
*

 * @return bool True if already available, false otherwise
*/

 * @return bool True if already available, false otherwise
*/

function check_existing_regex($regex='')

function check_existing_regex($regex='', $current=array())

{
global $cache;

{
global $cache;

 

if(!empty($current) && $current['regex'] == $regex)
{
return false;
}


$mycodes = $cache->read('mycode');


$mycodes = $cache->read('mycode');

 


	foreach($mycodes as $mycode)
{
if($mycode['regex'] == $regex)

	foreach($mycodes as $mycode)
{
if($mycode['regex'] == $regex)