Browse Source

Merge pull request #17559 from nextcloud/deprecate/template-manager

Deprecate TemplateManager
Roeland Jago Douma 4 years ago
parent
commit
f7319e139d

+ 0 - 1
apps/files/appinfo/app.php

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

+ 0 - 9
core/templates/filetemplates/template.html

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

+ 5 - 0
lib/private/Files/Type/TemplateManager.php

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

+ 1 - 0
lib/private/legacy/helper.php

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