PHP code example of caouecs / sirtrevorjs

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

    

caouecs / sirtrevorjs example snippets


    SirTrevorJs::stylesheets()

    SirTrevorJs::scripts()

    string SirTrevorJs::transformText(string $text);

    string SirTrevorJS::findImage(string $text);

    mixed SirTrevorJS::find(string $text, string $blocktype [, string $output = "json"])

    "directory_upload" => "img/uploads"

    app('caouecs.sirtrevorjs.converter')

    string app('caouecs.sirtrevorjs.converter')->toHtml($text)

    string app('caouecs.sirtrevorjs.converter')->toAmp($text);

    string app('caouecs.sirtrevorjs.converter')->toFb($text);

'customBlocks' => [
    'image_extended' => '\App\SirTrevorConverters\ImageExtendedConverter',
],


namespace App\SirTrevorConverters;

use \Caouecs\Sirtrevorjs\SirTrevorJsConverter;

class SirTrevorJsConverterEditor extends SirTrevorJsConverter
{
    /**
     * Custom blocks.
     *
     * @var array
     */
    protected $customBlocks = [
        'gallery' => '{Your namespace}\\Editor\\Converter\\GalleryConverterEditor',
        'readmore' => '{Your namespace}\\Editor\\Converter\\ReadMoreConverterEditor',
    ];
}