1. Go to this page and download the library: Download vegas-cmf/exporter library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
vegas-cmf / exporter example snippets
use Phalcon\DiInterface;
use Vegas\DI\ServiceProviderInterface;
/**
* Class ExporterServiceProvider
*/
class ExporterServiceProvider implements ServiceProviderInterface
{
const SERVICE_NAME = 'exporter';
/**
* {@inheritdoc}
*/
public function register(DiInterface $di)
{
$di->set(self::SERVICE_NAME, function() use ($di) {
$exporter = new \Vegas\Exporter\Exporter;
return $exporter->setDI($di);
}, true);
}
public function getDependencies()
{
return [];
}
}