Page 1 of 1
planning a new event plugin
Posted: Sat Feb 24, 2007 2:57 pm
by kleinerChemiker
im planning a plugin and have some questions:
here the first:
how do i get my plugin into spartacus?
whats the difference between the langue files in the top dir and the ones in the utf8 dir?
Posted: Sat Feb 24, 2007 3:18 pm
by kleinerChemiker
$propbag->add('requirements', array(
'serendipity' => '0.8',
'smarty' => '2.6.7',
'php' => '4.1.0'
));
is this a must for a plugin? because i don't realy know, what requirements my plugin will have.
Posted: Mon Feb 26, 2007 10:33 am
by garvinhicking
Hi!
Requirements should be added to your plugin, yes. If you don'T know what you need, simply put the environment of your own serendipity in there (version 1.1.1 for example).
Your plugins hould work with serendipity 0.8, I also enabled that in spartacus for your plugin.
Best regards,
Garvin
Posted: Sat Jul 07, 2007 2:35 pm
by blog.brockha.us
Are there answers to the first post? As I have the same questions..
Posted: Sat Jul 07, 2007 2:50 pm
by kleinerChemiker
send the plugin to garvin or talk with him for cvs access
Posted: Sat Jul 07, 2007 2:56 pm
by blog.brockha.us
Thanks for the info.
Re: planning a new event plugin
Posted: Sat Jul 07, 2007 3:54 pm
by stm999999999
kleinerChemiker wrote:
whats the difference between the langue files in the top dir and the ones in the utf8 dir?
In the normal lang-files are the words with umlauts and other special characters in "normal" way like
Code: Select all
@define('PLUGIN_KARMA_BLAHBLAH', 'Abstimmung über die Einträge');
if the blog is working in utf8-mode:
Code: Select all
@define('PLUGIN_KARMA_BLAHBLAH', 'Abstimmung über die Einträge');
Posted: Sat Jul 07, 2007 4:15 pm
by blog.brockha.us
Ah okay, I understand. Thanks again!