PHP code example of six-paths / icalendar-bundle

1. Go to this page and download the library: Download six-paths/icalendar-bundle 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/ */

    

six-paths / icalendar-bundle example snippets


$bundles = array(
    // ...
    new Sixpaths\ICalendarBundle\SixpathsICalendarBundle(),
);

class SomeController extends Controller
{
    public function someAction(/* ...$arguments */)
    {
        $icalendar = $this->get('sixpaths.icalendar');
    }
}

class SomeCommand extends ContainerAwareCommand
{
    protected function configure()
    {
        $this->setName('some:command')
            ->setDescription('A command');
    }

    protected function execute(InterInterface $input, OutputInterface $output)
    {
        $container = $this->getContainer();
        $icalendar = $container->get('sixpaths.icalendar');
    }
}