Download the PHP package oxid-professional-services/oxid-console without Composer
On this page you can find all versions of the php package oxid-professional-services/oxid-console. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download oxid-professional-services/oxid-console
More information about oxid-professional-services/oxid-console
Files in oxid-professional-services/oxid-console
Package oxid-console
Short Description the oxid professional services console for oxid
License GPL-3.0-only
Informations about the package oxid-console
OXID PS Console
OXID PS Console is a Symfony console application for OXID eShop. It is community and project driven with write and read access like in a public wiki (like Wikipedia).
The following commands are available:
cache:clear
- Clear OXID cacheviews:update
- Regenerate database viewsmodule:activate
- Activate module in shopmodule:generate
- Generate new module scaffoldmodule:fix
- Fix the module chain based on the metadata contentsmigration:generate
- Generate new migration filemigration:run
- Run migration scripts
For backwards compatibility the following commands are still available (but are deprecated):
db:update
- Updates database viewsg:migration
- Generate new migration fileg:module
- Generate new module scaffoldlist
- (default) List of all available commandsmigrate
- Run migration scripts
Which version to get?
OXID Version | OXID Console version | Source Code link | Download link |
---|---|---|---|
<4.9.0, <5.2.0 | 1.1.5 | Source Code | Download ZIP |
>=4.9.0, >=5.2.0 | 1.2.6 | Source Code | Download ZIP |
=6.1.x | 6.0 | Source Code | please use composer to install see next section |
=6.2.x | - | use with care oxid console is not designed to be used with oxid 6.2 for now |
Installation
Use Composer to add the console to your project
Getting started
Defining your own command
- Class must extend
Symfony\Component\Console\Command\Command
class - Add the following in the services.yaml json of your module (composer package)
Template for your command:
For more examples please see https://symfony.com/doc/current/components/console.html
Migrations
Warning current implementation does not trigger the oxid core migration "oe-eshop-doctrine_migration"
OXID Console project includes migration handling. Lets generate sample migration by running vendor/bin/oxid migration:generate "add amount field to demo module"
.
Console application generated migration/20140312161434_addamountfieldtodemomodule.php
file with its contents:
Migration handler can run migrations with your given timestamp (if no timestamp provided than it assumes timestamp as current timestamp). Inside it saves which migration queries were executed and knows which migration queries go up or go down.
Once we generated this file we run vendor/bin/oxid migration:run
Now lets run the same command a second time
Note: No migration scripts were ran
Ok, now lets run migrations with given timestamp of the past with vendor/bin/oxid migration:run 2013-01-01
command
It ran our migration query down because on given timestamp we should not have had executed that migration query.
Example
Here is a quick example of migration query which adds a column to oxuser table
Migration Query Law
- Filename must follow
YYYYMMDDHHiiss_description.php
format - Must extend
oxMigrationQuery
abstract class - Class name must be the same as description with Migration word appended to the end of the name
Note: It is better to use generator for migration queries creation