PHP code example of fond-of-oryx / jellyfish-buffer-gui

1. Go to this page and download the library: Download fond-of-oryx/jellyfish-buffer-gui 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/ */

    

fond-of-oryx / jellyfish-buffer-gui example snippets


if (file_exists(APPLICATION_VENDOR_DIR . '/fond-of-oryx')) {
    $config[TranslatorConstants::TRANSLATION_ZED_FILE_PATH_PATTERNS][] = APPLICATION_VENDOR_DIR . '/fond-of-oryx/*/data/translation/Zed/[a-z][a-z]_[A-Z][A-Z].csv';
}

public function getNavigationSchemaPathPattern()
    {
        $navigationSchemaPathPatterns = parent::getNavigationSchemaPathPattern();

        if (file_exists(APPLICATION_VENDOR_DIR . '/fond-of-oryx')) {
            $navigationSchemaPathPatterns[] = APPLICATION_VENDOR_DIR . '/fond-of-oryx/*/src/*/Zed/*/Communication/';
        }

        return $navigationSchemaPathPatterns;
    }

public function getSalesDetailExternalBlocksUrls()
    {
        $projectExternalBlocks = [
            'jellyfishBuffer' => 'jellyfish-buffer-gui/export/list',
            ...
        ];

        $externalBlocks = parent::getSalesDetailExternalBlocksUrls();

        return array_merge($externalBlocks, $projectExternalBlocks);
    }