e015/common
E015 - Common
1.3.7
2024-07-30 10:12 UTC
Requires
- php:>=5.4.0
- boundstate/yii2-htmlconverter:*
- elitedivision/amos-admin:^2.0.31
- elitedivision/amos-attachments:^1.1.4
- elitedivision/amos-core:^1.9.58
- elitedivision/amos-workflow:~1.0
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
- dev-master
- 1.3.7
- 1.3.6
- 1.3.5
- 1.3.4
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.0
- 1.1.1
- 1.1.0
- 1.0.14
- 1.0.13
- 1.0.12
- 1.0.11
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- dev-test/1.3.2/1
- dev-test/1.3.1/1
- dev-test/1.3.0/1
- dev-test/1.2.0
- dev-elena-mev-grafiche
- dev-test/1.1.0
- dev-test/1.0.13
- dev-open20/1.0.12/1
- dev-test/1.0.12/1
- dev-test/1.0.11/2
- dev-test/1.0.11/1
- dev-test/1.0.10/2
- dev-test/1.0.10/1
- dev-test/1.0.8/1
- dev-test/1.0.9/1
- dev-test/1.0.7/1
- dev-test/1.0.6/1
- dev-riccardo/1.0.6/1
- dev-test/1.0.5/1
- dev-test/1.0.4/1
- dev-test/1.0.3/1
- dev-test/1.0.1/1
- dev-test/1.0/6
- dev-test/1.0/5
- dev-fabiot
- dev-simone/1.0/5
- dev-test/1.0/4
- dev-test/1.0/3
- dev-test/1.0/1
- dev-riccardo/1.0/1
- dev-pivanti
- dev-test/1.0/2
- dev-enrica/amos-layout
README
Plugin for E015 common modules.
Installation
1. The preferred way to install this extension is through composer.
Either run
composer require e015/common
or add this row
"e015/common": "dev-master"
to the require section of your composer.json
file.
2. Add module to your main config in backend:
<?php
'modules' => [
'e015common' => [
'class' => 'e015\common\Module',
],
],
3. Apply migrations
php yii migrate/up --migrationPath=@vendor/e015/common/src/migrations
or add this row to your migrations config in console:
<?php
return [
'@vendor/e015/common/src/migrations',
];
4. Add configuration to tag module. In backend/config/modules-amos.php add configuration like this:
<?php
if (isset($modules['tag'])) {
...
if (isset($modules['e015common'])) {
$modules['tag']['modelsEnabled'][] = 'e015\common\models\Adherent';
}
...
}
Then go in the tag manager and configure the roles for the trees you want for this model.