PHP code example of exs / feeds-cambuilder-bundle
1. Go to this page and download the library: Download exs/feeds-cambuilder-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/ */
exs / feeds-cambuilder-bundle example snippets
// app/AppKernel.php
class AppKernel extends Kernel
{
// ...
public function registerBundles()
{
$bundles = array(
// ...
new EXS\FeedsCambuilderBundle\EXSFeedsCambuilderBundle(),
);
}
}
// Returns 100 performer Ids by default.
$performerIds = $container
->get('exs_feeds_cambuilder.feeds_reader')
->getLivePerformers()
;
// Can specify the number of performers to return
$performerIds = $container
->get('exs_feeds_cambuilder.feeds_reader')
->getLivePerformers(20)
;