.

contributions/usermanagement/install/install.php File Reference

Go to the source code of this file.

Functions

  usermanagement_install ()

Function Documentation

usermanagement_install (  ) 

Definition at line 3 of file install.php.

00003                                   {
00004         $ret = new Status();
00005         Load::components('systemupdateinstaller');
00006         $ret->merge(
00007                 SystemUpdateInstaller::copy_file_to_app(
00008                         dirname(__FILE__) . '/users.controller.php.example', 
00009                         'controller/users.controller.php', 
00010                         SystemUpdateInstaller::COPY_NO_REPLACE
00011                 )
00012         );
00013         return $ret;    
00014 }