1755c393
Yarik
Basic template in...
|
1
|
<?php
|
8ee5e622
Alexey Boroda
-Flesh widget ready
|
2
3
4
5
|
Yii::setAlias('@common', dirname(__DIR__));
Yii::setAlias('@frontend', dirname(dirname(__DIR__)) . '/frontend');
Yii::setAlias('@backend', dirname(dirname(__DIR__)) . '/backend');
Yii::setAlias('@console', dirname(dirname(__DIR__)) . '/console');
|
8b3dc47b
Yarik
XPanel removed
|
6
7
8
|
Yii::setAlias('@storage', dirname(dirname(__DIR__)) . '/storage');
if (!Yii::getAlias('@artbox/core', false)) {
Yii::setAlias('@artbox/core', dirname(dirname(__DIR__)) . '/artweb/artbox-core');
|
6be4eed8
Alexey Boroda
-Category in process
|
9
10
11
|
}
if (!Yii::getAlias('@artbox/catalog', false)) {
Yii::setAlias('@artbox/catalog', dirname(dirname(__DIR__)) . '/artweb/artbox-catalog');
|
d7374030
Yarik
Basket
|
12
13
14
|
}
if (!Yii::getAlias('@artbox/order', false)) {
Yii::setAlias('@artbox/order', dirname(dirname(__DIR__)) . '/artweb/artbox-order');
|
cd5c4aa4
Yarik
Merge remote-trac...
|
15
|
}
|
6b833fda
Alexey Boroda
-Bug with fill re...
|
16
17
|
if (!Yii::getAlias('@artbox/weblog', false)) {
Yii::setAlias('@artbox/weblog', dirname(dirname(__DIR__)) . '/artweb/artbox-weblog');
|
222b0897
Yarik
Artbox comment cr...
|
18
19
20
|
}
if (!Yii::getAlias('@artbox/webcomment', false)) {
Yii::setAlias('@artbox/webcomment', dirname(dirname(__DIR__)) . '/artweb/artbox-webcomment');
|
8b3dc47b
Yarik
XPanel removed
|
21
|
}
|