2011-03-03 15:55:32 -05:00
|
|
|
<?php
|
2013-02-10 08:42:23 -05:00
|
|
|
|
2012-11-29 19:41:30 -05:00
|
|
|
$l = OC_L10N::get('files');
|
2011-08-09 11:54:02 -04:00
|
|
|
|
2012-10-22 18:28:12 -04:00
|
|
|
OCP\App::registerAdmin('files', 'admin');
|
2011-03-03 17:08:11 -05:00
|
|
|
|
2013-08-07 17:48:44 -04:00
|
|
|
OCP\App::addNavigationEntry(array("id" => "files_index",
|
|
|
|
|
"order" => 0,
|
|
|
|
|
"href" => OCP\Util::linkTo("files", "index.php"),
|
|
|
|
|
"icon" => OCP\Util::imagePath("core", "places/files.svg"),
|
|
|
|
|
"name" => $l->t("Files")));
|
2011-04-17 14:00:07 -04:00
|
|
|
|
2012-03-01 16:58:44 -05:00
|
|
|
OC_Search::registerProvider('OC_Search_Provider_File');
|
2013-04-16 07:07:55 -04:00
|
|
|
|
|
|
|
|
// cache hooks must be connected before all other apps.
|
|
|
|
|
// since 'files' is always loaded first the hooks need to be connected here
|
|
|
|
|
\OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook');
|
|
|
|
|
\OC_Hook::connect('OC_Filesystem', 'post_touch', '\OC\Files\Cache\Updater', 'touchHook');
|
|
|
|
|
\OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook');
|
2013-04-20 10:38:03 -04:00
|
|
|
\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook');
|
|
|
|
|
|
2013-06-02 15:21:39 -04:00
|
|
|
\OCP\BackgroundJob::addRegularTask('\OC\Files\Cache\BackgroundWatcher', 'checkNext');
|
2013-08-07 17:48:44 -04:00
|
|
|
|
|
|
|
|
$templateManager = OC_Helper::getFileTemplateManager();
|
|
|
|
|
$templateManager->registerTemplate('text/html', 'core/templates/filetemplates/template.html');
|
2013-08-18 15:11:11 -04:00
|
|
|
$templateManager->registerTemplate('application/vnd.oasis.opendocument.presentation', 'core/templates/filetemplates/template.odp');
|
|
|
|
|
$templateManager->registerTemplate('application/vnd.oasis.opendocument.text', 'core/templates/filetemplates/template.odt');
|
|
|
|
|
$templateManager->registerTemplate('application/vnd.oasis.opendocument.spreadsheet', 'core/templates/filetemplates/template.ods');
|