项目作者: diegoangel

项目描述 :
Call Center Symfony Bundle for building call center applications for sales agents.
高级语言: PHP
项目地址: git://github.com/diegoangel/call-center-platform.git
创建时间: 2016-10-12T19:07:28Z
项目社区:https://github.com/diegoangel/call-center-platform

开源协议:GNU General Public License v3.0

下载


Call Center Platform

Build Status
Scrutinizer Code Quality

SensioLabsInsight

Introduction

This bundle was created for building symfony web applications to be used as a frontend by call center sales agents and as backend by team leaders and managers. It has features to manage contacts, sales, users, reports, etc …

It depends on several others bundles that you have to install along with this.
Likewise, this bundle is made up of components and one or more bundles using this components and exposing its logic through Symfony services.

Register the bundle

To start using the bundle, register it in app/AppKernel.php:

  1. public function registerBundles()
  2. {
  3. $bundles = [
  4. // Other bundles...
  5. new Fresh\DoctrineEnumBundle\FreshDoctrineEnumBundle(),
  6. new FOS\RestBundle\FOSRestBundle(),
  7. new FOS\UserBundle\FOSUserBundle(),
  8. new FOS\JsRoutingBundle\FOSJsRoutingBundle(),
  9. new Ivory\CKEditorBundle\IvoryCKEditorBundle(),
  10. new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(),
  11. new CallCenter\Bundle\CommonBundle(),
  12. ];
  13. //...
  14. if (in_array($this->getEnvironment(), ['dev', 'test'])) {
  15. //...
  16. }
  17. }

Configure the bundle