PHP code example of aplia / starter-bootstrap

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

    

aplia / starter-bootstrap example snippets



// Bootstrap the system based on our configuration
if (!file_exists(__DIR__ . '/vendor/aplia/starter-bootstrap/bootstrap.php')) {
    if (PHP_SAPI != 'cli') {
        echo '<html><body><p>';
    }
    $text =
        "aplia/starter-bootstrap is not installed, cannot continue.\n" .
        "Make sure the bootstrap system is installed by running:\n" .
        "composer 


return [
    'app' => [
        'errorLevel' => 'error',
    ],
    'sentry' => [
        'dsn' => 'https://[email protected]/..',
    ],
];


if (!function_exists('my_helper')) {
    function my_helper()
    {
        // code here.
    }
}


return [
    'helpers' => [
        'site' => ['path/to/helper.php'],
    ],
];


return [
    'app' => [
        'helpers' => [
            'site' => 300,
        ],
    ],
];


dump($data);


inspect($name, '$name');

[
    'editor' => [
        'fileMappings' => [
            // Example 1: Map root of project to local path
            '' => '~/src/myproject',
        ],
    ],
];


return [
    'editor' => [
        'name' => 'sublime',
        'fileMappings' => [
            '' => '~/src/myproject',
        ],
    ],
];


return [
    'app' => [
        'errorLevel' => 'notice',
    ],
];


$GLOBALS['STARTER_BASE_DEBUG'] = true;


$GLOBALS['STARTER_BASE_DUMP_CONFIG'] = true;


$GLOBALS['STARTER_DEBUG_TRACE'] = true;


$GLOBALS['STARTER_CONFIG_CLASS'] = '\\Custom\Config';


$GLOBALS['STARTER_APP_CLASS'] = '\\Custom\\App';


$_ENV['WWW_ROOT'] = 'www';


$_ENV['EZP_ROOT'] = 'ezpublish';


$_ENV['VENDOR_ROOT'] = 'custom_vendor';


// Adding an additional base config
$GLOBALS['STARTER_BASE_CONFIGS'] = ['base', 'core'];


// Enabling specific config for laravel
$GLOBALS['STARTER_FRAMEWORK'] = 'laravel';


// Enabling development config
$GLOBALS['STARTER_CONFIGS'] = ['dev'];


// Enabling development config
$GLOBALS['STARTER_EXTRA_CONFIGS'] = ['extra'];


// Example configuration
return [
    'app' => [
        'bootstrap' => [
            'classes' => [
                'starter.base' => 'Aplia\Bootstrap\BaseApp',
            ],
        ],
    ],
];

return [
    'app' => [
        'dump' => [
            'casters' => [
                // Dump virtual attributes on all persistent objects
                'eZPersistentObject' => ['Aplia\Bootstrap\VirtualAttributeCaster', 'castAttributes'],
            ],
        ],
    ],
];

namespace CustomProject;

class BasedModel
{
    public function __properties()
    {
        return ['id'];
    }

    public function __get($name)
    {
        if ($name === 'id') {
            return $this->fetchId();
        }
    }

    public function fetchId()
    {
        // ...
    }
}

return [
    'app' => [
        'dump' => [
            'casters' => [
                'CustomProject\BaseModel' => ['Aplia\Bootstrap\VirtualAttributeCaster', 'castAttributes'],
            ],
        ],
    ],
];

return [
    'app' => [
        'dump' => [
            'virtualAttributes' => [
                'eZContentClassAttribute' => [
                    'data_type',
                    'display_info',
                    'name',
                    'nameList',
                    'description',
                    'descriptionList',
                    'data_text_i18n',
                    'data_text_i18n_list',
                ],
            ],
            'expensiveAttributes' => [
                'eZContentClassAttribute' => ['content', 'temporary_object_attribute'],
            ],
        ],
    ],
];
console
ERROR_DEPRECATION=ignore php old_script.php