I try to create a plugin.
Here are some informations to do so for beginers (like me).
I will add informations as soon as I discover one or have answers.
[size=150:5jf1t6v9]Initialisation
- Create a new dir in plugins directory (it will be the name of the plugin)[/*:m:5jf1t6v9]
- Create a index.php file with
<?php
[/*:m:5jf1t6v9]
include('../../common.php');
render();
- Create a template.php file with
[/*:m:5jf1t6v9]
<h1>My Plugin !</h1>
Hello World !
Now you have a menu entry plugin, with a new plugin test inside, which who "Hello World !" when called.
For the moment, there is some bug on windows system: api directory is not correctly handled (some / \ pb). And the template file is not located...
bye
Vicnet