Minor changing comments

skala
Julio Montoya 13 years ago
parent acae9d3324
commit 7eb31f986f
  1. 2
      plugin/hello_world/index.php
  2. 9
      plugin/hello_world/plugin.php

@ -8,5 +8,5 @@
if (!empty($plugin_info['settings']['hello_world_show_type'])) {
echo "<h2>".$plugin_info['settings']['hello_world_show_type']."</h2>";
} else {
echo "<h2>Hello worlds</h2>";
echo "<h2>Hello world</h2>";
}

@ -9,6 +9,8 @@
* Plugin details (must be present)
*/
/* Plugin config */
//the plugin title
$plugin_info['title'] = 'Hello world';
//the comments that go with the plugin
@ -19,7 +21,12 @@ $plugin_info['version'] = '1.0';
$plugin_info['author'] = 'Julio Montoya';
//More complex options for the plugin (optional)
/* Plugin optional settings */
/*
* This form will be showed in the plugin settings once the plugin was installed
* in the plugin/hello_world/index.php you can have access to the value: $plugin_info['settings']['hello_world_show_type']
*/
$form = new FormValidator('hello_world_form');

Loading…
Cancel
Save