summaryrefslogtreecommitdiffstats
path: root/src/Project/Framework/Extensions.php
blob: 156bd7d69314382e882d47831ec816e01bae12ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php

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
        ));
    }
}