Deprecate TemplateManager

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2019-10-16 09:54:17 +02:00
parent 8153bd00a5
commit a9c089064b
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
4 changed files with 6 additions and 10 deletions

View File

@ -34,7 +34,6 @@ $l = \OC::$server->getL10N('files');
\OC::$server->getSearch()->registerProvider(File::class, array('apps' => array('files'))); \OC::$server->getSearch()->registerProvider(File::class, array('apps' => array('files')));
$templateManager = \OC_Helper::getFileTemplateManager(); $templateManager = \OC_Helper::getFileTemplateManager();
$templateManager->registerTemplate('text/html', 'core/templates/filetemplates/template.html');
$templateManager->registerTemplate('application/vnd.oasis.opendocument.presentation', 'core/templates/filetemplates/template.odp'); $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.text', 'core/templates/filetemplates/template.odt');
$templateManager->registerTemplate('application/vnd.oasis.opendocument.spreadsheet', 'core/templates/filetemplates/template.ods'); $templateManager->registerTemplate('application/vnd.oasis.opendocument.spreadsheet', 'core/templates/filetemplates/template.ods');

View File

@ -1,9 +0,0 @@
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>

View File

@ -24,6 +24,9 @@
namespace OC\Files\Type; namespace OC\Files\Type;
/**
* @deprecated 18.0.0
*/
class TemplateManager { class TemplateManager {
protected $templates = array(); protected $templates = array();
@ -34,6 +37,7 @@ class TemplateManager {
/** /**
* get the path of the template for a mimetype * get the path of the template for a mimetype
* *
* @deprecated 18.0.0
* @param string $mimetype * @param string $mimetype
* @return string|null * @return string|null
*/ */
@ -48,6 +52,7 @@ class TemplateManager {
/** /**
* get the template content for a mimetype * get the template content for a mimetype
* *
* @deprecated 18.0.0
* @param string $mimetype * @param string $mimetype
* @return string * @return string
*/ */

View File

@ -189,6 +189,7 @@ class OC_Helper {
} }
/** /**
* @deprecated 18.0.0
* @return \OC\Files\Type\TemplateManager * @return \OC\Files\Type\TemplateManager
*/ */
static public function getFileTemplateManager() { static public function getFileTemplateManager() {