Changeset 577 for plugins/metaseo/trunk/metaseo.plugin.php
- Timestamp:
- 06/13/08 02:34:59 (7 months ago)
- Files:
-
- 1 modified
-
plugins/metaseo/trunk/metaseo.plugin.php (modified) (16 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plugins/metaseo/trunk/metaseo.plugin.php
r572 r577 1 1 <?php 2 /* *2 /* 3 3 * Meta SEO an SEO plugin for Habari 4 4 * … … 10 10 * indexing tags based on the preferences 11 11 * 12 * */12 */ 13 13 14 14 class MetaSeo extends Plugin … … 43 43 } 44 44 45 /* *45 /* 46 46 * function set_priorities 47 47 * … … 59 59 } 60 60 61 /* *61 /* 62 62 * function default_options 63 63 * … … 97 97 } 98 98 99 /* *99 /* 100 100 * function action_plugin_activation 101 101 * … … 115 115 } 116 116 117 /* *117 /* 118 118 * function filter_plugin_config 119 119 * … … 132 132 } 133 133 134 /* *134 /* 135 135 * function action_plugin_ui 136 136 * … … 166 166 } 167 167 168 /* *168 /* 169 169 * Add additional controls to the publish page tab 170 170 * 171 171 * @param FormUI $form The form that is used on the publish page 172 172 * @param Post $post The post being edited 173 * */173 */ 174 174 public function action_form_publish($form, $post) 175 175 { … … 193 193 194 194 195 /* *195 /* 196 196 * Modify a post before it is updated 197 197 * … … 229 229 } 230 230 231 /* *231 /* 232 232 * function filter_final_output 233 233 * … … 252 252 } 253 253 254 /* *254 /* 255 255 * function theme_header 256 256 * … … 268 268 } 269 269 270 /* *270 /* 271 271 * function action_update_check 272 272 * … … 334 334 } 335 335 336 /* *336 /* 337 337 * function get_keywords 338 338 * … … 383 383 } 384 384 385 /* *385 /* 386 386 * function get_robots 387 387 * … … 456 456 } 457 457 458 /* *458 /* 459 459 * function get_title 460 460 * … … 528 528 529 529 } 530 531 530 ?>
