PHP code example of atico / spreadsheet-translator-symfony-bundle

1. Go to this page and download the library: Download atico/spreadsheet-translator-symfony-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/ */

    

atico / spreadsheet-translator-symfony-bundle example snippets



// config/bundles.php
return [
    // ...
    Atico\Bundle\SpreadsheetTranslatorBundle\SpreadsheetTranslatorBundle::class => ['all' => true],
    // ...
];


// app/AppKernel.php
public function registerBundles()
{
    $bundles = array(
        // ...
        new Atico\Bundle\SpreadsheetTranslatorBundle\SpreadsheetTranslatorBundle(),
        // ...
    );
    ...
 }
 


return array (
  'homepage_title' => 'Spreadsheet translator',
  'homepage_subtitle' => 'Translator of web pages from spreadsheets',
);