YetiForceCompany/YetiForceCRM

View on GitHub
app/Debug/DebugBar/DebugBar.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php
/**
 * Manages data collectors. DebugBar provides an array-like access  to collectors by name.
 *
 * @package Log
 *
 * @copyright YetiForce S.A.
 * @license   YetiForce Public License 6.5 (licenses/LicenseEN.txt or yetiforce.com)
 * @author    Mariusz Krzaczkowski <m.krzaczkowski@yetiforce.com>
 */

namespace App\Debug\DebugBar;

/**
 * Manages data collectors. DebugBar provides an array-like access  to collectors by name.
 */
class DebugBar extends \DebugBar\DebugBar
{
    /**
     * Returns a JavascriptRenderer for this instance.
     *
     * @param string $baseUrl
     * @param string $basePath
     *
     * @return JavascriptRenderer
     */
    public function getJavascriptRenderer($baseUrl = null, $basePath = null)
    {
        if (null === $this->jsRenderer) {
            $this->jsRenderer = new JavascriptRenderer($this, $baseUrl, $basePath);
            $this->jsRenderer->setOptions([
                'enable_jquery_noconflict' => false,
            ]);
            $this->jsRenderer->disableVendor('jquery');
        }
        return $this->jsRenderer;
    }

    /**
     * Renders the html to include needed assets.
     *
     * @return void
     */
    public function loadScripts()
    {
        return $this->getJavascriptRenderer(\App\Layout::getPublicUrl('vendor/maximebf/debugbar/src/DebugBar/Resources'))->renderHead();
    }
}