Adil
DevBest CEO
- May 28, 2011
- 1,278
- 716
Hi.
Tinyblog is a small OO-PHP blogging system, built loosely? upon jfw. Tinyblog features:
Folder structure:
Status:
Code:
Tinyblog's plugin feature works off an interface called iPlugins:
Plugin interface hasn't been completed, more to come.
This thread will be updated regularly.
Credits:
Livar ~ Template system
Cobe ~ MySQLi class (coming soon)
Tinyblog is a small OO-PHP blogging system, built loosely? upon jfw. Tinyblog features:
- Post editing
- Multiple themes
- Template keys
- Powerful backend
- Plugins
Folder structure:
Status:
- Framework ~ 95% done
- Blogging admin ~ 0%
Code:
You must be registered for see links
Tinyblog's plugin feature works off an interface called iPlugins:
PHP:
<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Adil
* Interface for plugin development
*/
interface iPlugins {
/* public function InstallPlugin($dir){}
public function DeletePlugin($dir){}*/
public function PluginName(){}
public function RunPlugin(){}
}
?>
This thread will be updated regularly.
Credits:
Livar ~ Template system
Cobe ~ MySQLi class (coming soon)