PHP code example of vrestihnat / title-control

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

    

vrestihnat / title-control example snippets


protected function createComponentTitle(): Vrestihnat\TitleControl\TitleControl
{
    $control = $this->titleControlFactory->create();
    $control->setTitle('My title');
    return $control;
}

    $control->addItem('One')->addItem('Two'); // 'One | Two'

    $control->setSeparator(' ~ ');