Git Product home page Git Product logo

Comments (6)

ernestgm2006 avatar ernestgm2006 commented on July 29, 2024

For a better understanding of the error that is giving me the bundle will leave the following description.
After having installed the bundle using the composer.
The Active in AppKernel.php.
When I update the page then shown me the error !!!

regards

from adminthemebundle.

ernestgm2006 avatar ernestgm2006 commented on July 29, 2024

I solved the problem by turning these lines in the file:

Avanzu\AdminThemeBundle\DependencyInjection\AvanzuAdminThemeExtension.php

/*
if (isset($bundles['AsseticBundle'])) {

        $assets = include(dirname(__FILE__).'/../Resources/config/assets.php');

        $container->prependExtensionConfig(
            'assetic',
            array(
                'assets'  => array(),
                'bundles' => array(
                    'AvanzuAdminThemeBundle'
                )

            )
        );

    }
    */

from adminthemebundle.

Jawan81 avatar Jawan81 commented on July 29, 2024

As from version >=1.3 on the usage of Assetic is not required anymore (assets:install is sufficient) the bundle configuration should be extended to make the use of assetic optional. This would also avoid the unnecessary installation of node.js and bower only because other unrelated bundles require the AsseticBundle. So

if (isset($bundles['AsseticBundle'])) {

should be changed to something like

if ($config['use_assetic'] && isset($bundles['AsseticBundle'])) {

(though unfortunately the configuration is not directly available in the prepend method of the Extension).

from adminthemebundle.

avanzu avatar avanzu commented on July 29, 2024

Sorry for that. Will be fixed in 2.0.

from adminthemebundle.

shakaran avatar shakaran commented on July 29, 2024

@Jawan81 @ernestgm2006 since 2.0 was released time ago, I think that this should be already fixed properly. Please let me know if still reproducible for you or I could close the issue. Thanks

from adminthemebundle.

shakaran avatar shakaran commented on July 29, 2024

After check, this feature is now implemented in master. Please test and reopen if you see wrong behaviour again. Closing as fixed

from adminthemebundle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.