File: ApplicationController.php

package info (click to toggle)
php-horde-content 2.0.4-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 308 kB
  • ctags: 377
  • sloc: php: 1,454; xml: 474; makefile: 10; sh: 3
file content (20 lines) | stat: -rw-r--r-- 367 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/**
 * @category Horde
 * @package  Content
 */

/**
 * @category Horde
 * @package  Content
 */
class Content_ApplicationController extends Horde_Controller_Base
{
    /**
     */
    protected function _initializeApplication()
    {
        $CONTENT_DIR = __DIR__ . '/../';
        $this->tagger = $GLOBALS['injector']->getInstance('Content_Tagger');
    }
}