nikita-dorodnykh / eeteditor
Web-based visual event tree modeling editor
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Language:JavaScript
Type:project
pkg:composer/nikita-dorodnykh/eeteditor
Requires
- php: >=5.4.0
- yiisoft/yii2: ~2.0.14
- yiisoft/yii2-bootstrap: ~2.0.0
- yiisoft/yii2-swiftmailer: ~2.0.0 || ~2.1.0
Requires (Dev)
- codeception/base: ~2.3.0
- codeception/specify: ~0.4.6
- codeception/verify: ~0.4.0
- symfony/browser-kit: >=2.7 <=4.2.4
- yiisoft/yii2-debug: ~2.1.0
- yiisoft/yii2-faker: ~2.0.0
- yiisoft/yii2-gii: ~2.1.0
This package is not auto-updated.
Last update: 2025-12-29 08:03:11 UTC
README
Extended Event Tree Editor
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.
DIRECTORY STRUCTURE
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
REQUIREMENTS
The minimum requirement by this project template that your Web server supports PHP 7.0, jsPlumb 2.12, PostgreSQL 9.0.
INSTALLATION
Install via Composer
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
CONFIGURATION
Database
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.