Vergleich inc/plugins/hello.php - 1.2.0 - 1.2.8

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 3Zeile 3
 * MyBB 1.2
* Copyright � 2006 MyBB Group, All Rights Reserved
*

 * MyBB 1.2
* Copyright � 2006 MyBB Group, All Rights Reserved
*

 * Website: http://www.mybboard.com
* License: http://www.mybboard.com/eula.html

 * Website: http://www.mybboard.net
* License: http://www.mybboard.net/eula.html

 *

 *

 * $Id: hello.php 1888 2006-07-07 07:37:34Z chris $

 * $Id: hello.php 2932 2007-03-10 05:48:55Z chris $

 */

 */

 

// Disallow direct access to this file for security reasons
if(!defined("IN_MYBB"))
{
die("Direct initialization of this file is not allowed.<br /><br />Please make sure IN_MYBB is defined.");
}


$plugins->add_hook("pre_output_page", "hello_world");
$plugins->add_hook("postbit", "hello_world_postbit");


$plugins->add_hook("pre_output_page", "hello_world");
$plugins->add_hook("postbit", "hello_world_postbit");

Zeile 17Zeile 23
	return array(
"name" => "Hello World!",
"description" => "A sample plugin that prints hello world and changes the content of each post to 'Hello world!'",

	return array(
"name" => "Hello World!",
"description" => "A sample plugin that prints hello world and changes the content of each post to 'Hello world!'",

		"website"		=> "http://www.mybboard.com",

		"website"		=> "http://www.mybboard.net",

		"author"		=> "MyBB Group",

		"author"		=> "MyBB Group",

		"authorsite"	=> "http://www.mybboard.com",

		"authorsite"	=> "http://www.mybboard.net",

		"version"		=> "1.0",
);
}

		"version"		=> "1.0",
);
}