[example] comments on cron_plugin_example

git-svn-id: https://forge.glpi-project.org/svn/example/trunk@77 349b9182-4a13-0410-896f-e5e9767dd1b3
This commit is contained in:
remicollet 2009-05-07 13:36:53 +00:00
parent a7b91f511d
commit fe8f065528

View File

@ -648,7 +648,12 @@ function plugin_headings_example($type,$ID,$withtemplate=0){
// Cron function : name= cron_plugin_PLUGINNAME // Cron function : name= cron_plugin_PLUGINNAME
function cron_plugin_example(){ function cron_plugin_example(){
echo "tttt"; logInFile('example',"cron called\n");
// >0 : done
// <0 : to be run again (not finished)
// 0 : nothing to do
return 1;
} }