MyBB Community Forums

Full Version: Making this piece of PHP into a plugin.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey, I've been slowly learning my way around PHP and have built a small script to define which banner should be displayed on my home page depending on the time of day. What I want to do is frame a copy of MyBB inside said homepage, and have this script run to change the skin instead of banner. This is the current version:

<?php
$time = date("G");
if ($time > 19 || $time < 6) {
	include "res/night-title.html";
	}
else {
	include "res/day-title.html";
}
?>

How would I edit this to determine the skin, and how would I then turn it into a plugin? Thanks.
search for a tutorial mate... there alot of them here... And I cant post them here... as they're strawberry long Big Grin
is that what you're looking for ?
http://community.mybboard.net/thread-64648.html
Yeah, this defo helps. Thanks :]