'Diego Najar', 'version'=>'3.7', 'url'=>'http://www.nibbleblog.com' ); // ===================================================================== // PLUGIN CLASS // ===================================================================== class PLUGIN_MY_IMAGE extends Plugin { function __construct() { parent::__construct(); $this->fields = array('caption'=>''); } public function dashboard_config() { global $Language; // Caption $html = ''; $html .= ''; // Image $html .= ''; $html .= ''; $html .= ''; $html .= ''; $html .= ''; // exact,portrait,landscape,auto,crop return $html; } public function blog_body() { $html = ''; return $html; } } ?>