home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / CMS / drupal-6.0.exe / drupal-6.0 / modules / blogapi / blogapi.install < prev    next >
Encoding:
Text File  |  2008-01-09  |  744 b   |  21 lines

  1. <?php
  2. // $Id: blogapi.install,v 1.1 2008/01/09 09:51:34 goba Exp $
  3.  
  4. /**
  5.  * @defgroup updates-5.x-to-6.x Blog API updates from 5.x to 6.x
  6.  * @{
  7.  */
  8.  
  9. /**
  10.  * Inform users about the new permission.
  11.  */
  12. function blogapi_update_6000() {
  13.   drupal_set_message("Blog API module does not depend on blog module's permissions anymore, but provides its own 'administer content with blog api' permission instead. Until <a href=\"". url('admin/user/permissions', array('fragment' => 'module-blogapi')) .'">this permission is assigned</a> to at least one user role, only the site administrator will be able to use Blog API features.');
  14.   return array();
  15. }
  16.  
  17. /**
  18.  * @} End of "defgroup updates-5.x-to-6.x"
  19.  * The next series of updates should start at 7000.
  20.  */
  21.