summaryrefslogtreecommitdiffstats
path: root/src/Project/Framework/Extensions.php
diff options
context:
space:
mode:
authorDracony <draconyster@gmail.com>2016-02-08 18:12:26 +0100
committerDracony <draconyster@gmail.com>2016-02-08 18:12:26 +0100
commitb3452705d63b078fd6437897640db7a16612177a (patch)
tree2849f9db6812be152495d9aa3322e591bd28917d /src/Project/Framework/Extensions.php
parentbd328d349b6c171f6b0a78ffac7471a52791308a (diff)
downloadPHPixie-b3452705d63b078fd6437897640db7a16612177a.zip
PHPixie-b3452705d63b078fd6437897640db7a16612177a.tar.gz
PHPixie-b3452705d63b078fd6437897640db7a16612177a.tar.bz2
added docblocks3.2.1
Diffstat (limited to 'src/Project/Framework/Extensions.php')
-rw-r--r--src/Project/Framework/Extensions.php36
1 files changed, 35 insertions, 1 deletions
diff --git a/src/Project/Framework/Extensions.php b/src/Project/Framework/Extensions.php
index ad972fa..156bd7d 100644
--- a/src/Project/Framework/Extensions.php
+++ b/src/Project/Framework/Extensions.php
@@ -2,7 +2,41 @@
namespace Project\Framework;
+/**
+ * Extensions registry.
+ */
class Extensions extends \PHPixie\Framework\Extensions
{
-
+ /**
+ * Extensions for the Template component
+ * @return array
+ */
+ public function templateExtensions()
+ {
+ return array_merge(parent::templateExtensions(), array(
+ //add your Template Extensions here
+ ));
+ }
+
+ /**
+ * Format compilers for the Template component
+ * @return array
+ */
+ public function templateFormats()
+ {
+ return array_merge(parent::templateFormats(), array(
+ //add your Template Formats here
+ ));
+ }
+
+ /**
+ * Provider Builders for the Auth component
+ * @return array
+ */
+ public function authProviderBuilders()
+ {
+ return array_merge(parent::authProviderBuilders(), array(
+ //add your Auth Provider Builders here
+ ));
+ }
} \ No newline at end of file