The Extended Event Tree Editor (EETE) is a web-based tool for designing Extended Event Tree Diagrams (EETD).
EETE is based on the PHP 7 and the Yii 2 Framework.
Editor uses jsPlumb Toolkit, version 2.12.9 for EETD visualization.
assets/ contains assets definition
commands/ contains console commands (controllers) for creation langs, users and diagrams by default
components/ contains XML/OWL importers and XML generator
config/ contains application configurations (db, web)
messages/ contains localization files for Russian and English
migrations/ contains all migrations for database
modules/ contains two modules:
editor/ contains main models, controllers and views for EETE
main/ contains views for representation of main index, contact and error
web/ contains css-scripts, js-scripts, images and other web resources
The minimum requirement by this project template that your Web server supports PHP 7.0, jsPlumb 2.12, PostgreSQL 9.0.
If you do not have Composer, you may install it by following the instructions at getcomposer.org.
You can then install this editor using the following command:
composer create-project nikita-dorodnykh/eeteditor
Edit the file config/db.php
with real data, for example:
return [
'class' => 'yii\db\Connection',
'dsn' => 'pgsql:host=localhost;port=5432;dbname=eeteditor;',
'username' => 'postgres',
'password' => 'root',
'charset' => 'utf8',
'tablePrefix' => 'eeteditor_',
'schemaMap' => [
'pgsql'=> [
'class'=>'yii\db\pgsql\Schema',
'defaultSchema' => 'public'
]
],
];
NOTES:
- EETE won't create the database for you, this has to be done manually before you can access it.
- Check and edit the other files in the
config/
directory to customize your application as required.