1 | <?php |
||
5 | final class ProductCategories extends BaseFinder |
||
6 | { |
||
|
|||
7 | |||
8 | protected $table = 'shop_category'; |
||
9 | |||
10 | protected $translations = 'shop_category_i18n'; |
||
11 | |||
12 | protected $nameColumn = 'shop_category_i18n.name'; |
||
13 | |||
14 | protected $urlColumn = 'shop_category.url'; |
||
15 | |||
16 | protected $langColumn = 'shop_category_i18n.locale'; |
||
17 | |||
18 | /** |
||
19 | * @return string |
||
20 | */ |
||
21 | public function getGroupName() { |
||
24 | |||
25 | /** |
||
26 | * @param string $url |
||
27 | * @return string |
||
28 | */ |
||
29 | public function formUrl($url) { |
||
32 | |||
33 | } |