| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function init() |
||
| 26 | { |
||
| 27 | $currentBackendId = Yii::app()->session->get(self::SESSION_KEY); |
||
| 28 | |||
| 29 | if ($currentBackendId !== null) |
||
| 30 | $this->_backend = Backend::model()->findByPk($currentBackendId); |
||
| 31 | else |
||
| 32 | $this->_backend = Backend::model()->default()->find(); |
||
| 33 | |||
| 34 | parent::init(); |
||
| 35 | } |
||
| 54 | } |