Added "formatter" app component.

This commit is contained in:
Qiang Xue
2013-05-28 18:58:35 -04:00
parent 9a97037012
commit 2f1021830d

View File

@@ -278,6 +278,15 @@ class Application extends Module
return $this->getComponent('cache'); return $this->getComponent('cache');
} }
/**
* Returns the formatter component.
* @return \yii\base\Formatter the formatter application component.
*/
public function getFormatter()
{
return $this->getComponent('formatter');
}
/** /**
* Returns the request component. * Returns the request component.
* @return \yii\web\Request|\yii\console\Request the request component * @return \yii\web\Request|\yii\console\Request the request component
@@ -333,6 +342,9 @@ class Application extends Module
'errorHandler' => array( 'errorHandler' => array(
'class' => 'yii\base\ErrorHandler', 'class' => 'yii\base\ErrorHandler',
), ),
'formatter' => array(
'class' => 'yii\base\Formatter',
),
'i18n' => array( 'i18n' => array(
'class' => 'yii\i18n\I18N', 'class' => 'yii\i18n\I18N',
), ),