PHP code example of gesdinet / videothumbnailextensionbundle

1. Go to this page and download the library: Download gesdinet/videothumbnailextensionbundle 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/ */

    

gesdinet / videothumbnailextensionbundle example snippets


$bundles = array(
    // ...
    new Gesdinet\Bundle\VideoThumbnailExtensionBundle\VideoThumbnailExtensionBundle(),
    // ...
);

use Gesdinet\Bundle\VideoThumbnailExtensionBundle\Twig\VideoThumbnailExtension;

$app['twig'] = $app->share($app->extend('twig', function($twig, $app) {
    $twig->addExtension(new VideoThumbnailExtension());

    return $twig;
}));