* * -------------------------------------------- * * This program is free software; you can redistribute it and/or modify it * * under the terms of the GNU General Public License as published by the * * Free Software Foundation; version 2 of the License * \**************************************************************************/ /*Write the Root Folder name into the database*/ #$oProc->query("INSERT INTO phpgw_mydms_Folders VALUES (1, 'Root-Folder', 0, 'no comment', 1, false, 2, 0)"); #$oProc->query("INSERT INTO phpgw_mydms_Folders VALUES (1, 'Root-Folder', 0, 'no comment', 1, 0, 2, 0)"); $rootFolder = array( 'name' => 'Root-Folder', 'parent' => 0, 'comment' => 'no comment', 'owner' => 1, 'inheritAccess' => 0, 'defaultAccess' => 2, 'sequence' => 0, ); //$GLOBALS['phpgw_setup']->oProc->insert('phpgw_mydms_Folders', $rootFolder, '', __LINE__, __FILE__, 'mydms'); ?>