29

GitHub - opencorero/opencore: OpenCore - Laravel for OpenCart

 4 years ago
source link: https://github.com/opencorero/opencore
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

OpenCore

An application built on Laravel which can run as a subsystem for OpenCart system.

OpenCore is an application made on Laravel for OpenCart which let's you develop new features or overwrite the existing ones in Laravel instead of the old OpenCart framework. The application comes with built-in features which help the developers to create new modules or new functionalities for OpenCart ecommerce platform. Also, stand-alone features (independent of OpenCart) can be easily added.

OpenCore - Laravel for OpenCart

Official website OpenCore. project made with the help of Aweb Design

WORK IN PROGRESS

Please note that this package is still under active development. We encourage everyone to try it, give feedback and if possible, contribute.

Features

  • All Laravel's 5.8 built-in helpers / features
  • Error logs by ARCANEDEV
  • Cronjob system management by Codestudiohq
  • WYSIWYG Email HTML/Markdown editor
  • Auto update feature
  • Module management by nWidart Modules
  • many more to come...

System Requirements

  • PHP >= 7.1.3
  • BCMath PHP Extension
  • Ctype PHP Extension
  • JSON PHP Extension
  • Mbstring PHP Extension
  • OpenSSL PHP Extension
  • PDO PHP Extension
  • Tokenizer PHP Extension
  • XML PHP Extension

check Laravel requirements because they may differ depending on the used version

Other Requirements

  • OpenCart 2.x / 3.x installed
  • root .htaccess.txt renamed to .htaccess
  • change admin settings from admin / setting / server / Use SEO URLs: Yes

Installation

  1. Install Git and Composer on your system
  2. go to your OpenCart root folder, open a console and run the following commands step by step
  3. git clone https://github.com/opencorero/opencore.git core
  4. cd core/
  5. composer update
  6. php artisan key:generate
  7. php artisan migrate
  8. php artisan opencore:register-routes
  9. copy OpenCart extension files from core/opencart-module/(2.x|3.x)/upload to you OpenCart root folder
  10. go to OpenCart admin panel / extensions / extensions / modules, find OpenCore module and install it
  11. click on the OpenCore icon from admin / left column / section "System Requirements" and make sure there's nothing marked with red
  12. Optional: in order to enable Developer & Example modules you need to access admin / user / user groups section and add permission for them

Enjoy!

Update

  1. cd core/
  2. git update
  3. composer update
  4. php artisan migrate
  5. php artisan opencore:register-routes
  6. copy OpenCart extension files from core/opencart-module/(2.x|3.x)/upload to you OpenCart root folder
  7. Optional: go to OpenCart / extensions / modules, disable and then re-enable the OpenCore module

How does it works ?

Let's take this file from OpenCart system: /admin/controller/common/header.php As you probably know, this file is commonly used for inserting the header part in all admin sections (there's one for catalog as well in catalog/controller/common/header.php) and it is called in other controllers this way:

$data['header'] = $this->load->controller('common/header');

and if it does not have another slash after header then the default index() method will be loaded from header controller. So, if you would like to rewrite this section using Laravel, you can create a custom Controller and a GET route 'common/header' which will point to the newly created controller and that's it! You are now able to write whatever custom code you want for the header file.

Example:

$router->get('common/header', 'ExampleController@commonColumnLeftReplace')->name('common.header');

If you want to create a new functionality, the process is the same but instead of using an existing route you will need to create a unique one.

Example:

$router->get('example', 'ExampleController@index')->name('example');

So, everytime you call /admin/example this controller will reply with the content.

Just remember that routes are split in two: admin.php and catalog.php routes files which can be found in /core/app/routes/ or in any module e.g.: /core/modules/Example/routes/

Is it fast?!

Yes, it is! As long as your server has the minimum requirements for Laravel 5.8 to work, everything should be good. The module is very fast and has no delay of any kind. The integration of Laravel Framework through OpenCart doesn't affect at all the speed of any of them. That is happenning thanks to the multiple optimizations done in the code and to the MySQL shared connector which will help sharing the database active connection between OpenCart and Laravel/OpenCore.

Documentation

Documentation for OpenCore can be found on the Official website.

  • right now it is under development but everything will be there soon

Security

If you discover any security related issues, please email author at [email protected] instead of using the issue tracker.

License

MIT license. Please see the license file for more information.

Screenshots

OpenCore home OpenCart 2x

OpenCore home OpenCart 3x

System Requirements

OpenCore Modules management

Developer Module

Logs Dashboard

Tasks

Add Task

Example Module

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK