PHP code example of lopescte / adianti-plugins
1. Go to this page and download the library: Download lopescte/adianti-plugins 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/ */
lopescte / adianti-plugins example snippets
// somewhere early in your project's loading, d
use TBreadCrumbWithLink\TBreadCrumbWithLink;;
$breadcrumb = new TBreadCrumbWithLink;
$breadcrumb->addItem('You are here:',NULL,TRUE);
$breadcrumb->addItem('Home', 'MyHomeClassName',FALSE);
$breadcrumb->renderFromXML('MyMenu.xml', __CLASS__);