| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | public function __construct($imageIdMd5, $locale = NULL) { |
||
| 20 | |||
| 21 | $locale = $locale ? $locale : \MY_Controller::getCurrentLocale(); |
||
| 22 | |||
| 23 | $this->bannerImage = BannerImageQuery::create() |
||
| 24 | ->joinWithI18n($locale) |
||
| 25 | ->where('md5(BannerImage.Id) = ?', $imageIdMd5) |
||
| 26 | ->findOne(); |
||
| 27 | } |
||
| 28 | |||
| 70 | } |