MyBB Community Forums

Full Version: My Plugin won't show up
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've written a nice little plugin, it works, and all is well. But, when I wrote the actual plugin file for it, it won't show up in the AdminCP to activate it.

The highlights of my file

<?php

if(!defined("IN_MYBB"))
{
	die("Direct initialization of this file is not allowed.<br /><br />Please make sure IN_MYBB is defined.");
}

function ryanocontact_info()
{
	return array(
		'name'				=> 'Contact Us Page',
		'description'		=> 'Allows visitors to contact you without giving out your email address',
		'website'			=> '',
		'author'			=> 'MHryano',
		'authorsite'		=> '',
		'version'			=> '1.0',
		'guid'				=> '',
		'compatibility' 	=> '14*',
	);
}

function ryanocontact_activate()
{
<stuff here>
}

function ryanocontact_deactivate()
{
	global $db;

	$db->delete_query("templates", "title IN('contactus', 'contactus_sent')");

	require MYBB_ROOT.'inc/adminfunctions_templates.php';
	
}

function ryanocontact()
{
	
}

?>

I'm totally baffled, as I followed the structure of the previous plugin I have written and that one shows up.
nvm, I'd got .pph instead of .php on my plugin file. *bangs head on desk*
w00t! It works - now to try and make sense of language files and how they work then I can finish up for using live and putting it on the 'to be released' pile