Show
Ignore:
Timestamp:
06/13/08 02:34:59 (7 months ago)
Author:
rickc
Message:

Plugin: metaseo. Standardized comment marks.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • plugins/metaseo/trunk/metaseo.plugin.php

    r572 r577  
    11<?php 
    2 /** 
     2/* 
    33 * Meta SEO an SEO plugin for Habari 
    44 *  
     
    1010 * indexing tags based on the preferences 
    1111 * 
    12  **/ 
     12 */ 
    1313 
    1414class MetaSeo extends Plugin 
     
    4343    } 
    4444 
    45     /** 
     45    /* 
    4646    * function set_priorities 
    4747    * 
     
    5959    } 
    6060 
    61     /** 
     61    /* 
    6262    * function default_options 
    6363    * 
     
    9797    } 
    9898 
    99     /** 
     99    /* 
    100100    * function action_plugin_activation 
    101101    * 
     
    115115    } 
    116116 
    117     /** 
     117    /* 
    118118     * function filter_plugin_config 
    119119     * 
     
    132132    } 
    133133 
    134     /** 
     134    /* 
    135135    * function action_plugin_ui 
    136136    * 
     
    166166    } 
    167167 
    168     /** 
     168    /* 
    169169    * Add additional controls to the publish page tab 
    170170    * 
    171171    * @param FormUI $form The form that is used on the publish page 
    172172    * @param Post $post The post being edited 
    173     **/ 
     173    */ 
    174174    public function action_form_publish($form, $post) 
    175175    { 
     
    193193 
    194194 
    195     /** 
     195    /* 
    196196    * Modify a post before it is updated 
    197197    * 
     
    229229    } 
    230230 
    231     /** 
     231    /* 
    232232    * function filter_final_output 
    233233    * 
     
    252252    } 
    253253 
    254     /** 
     254    /* 
    255255    * function theme_header 
    256256    * 
     
    268268    } 
    269269 
    270     /** 
     270    /* 
    271271    * function action_update_check 
    272272    * 
     
    334334    } 
    335335 
    336     /** 
     336    /* 
    337337     * function get_keywords 
    338338     * 
     
    383383    } 
    384384 
    385     /** 
     385    /* 
    386386     * function get_robots 
    387387     * 
     
    456456    } 
    457457 
    458     /** 
     458    /* 
    459459    * function get_title 
    460460    *  
     
    528528 
    529529} 
    530  
    531530?>