Git Product home page Git Product logo

Comments (6)

shakaran avatar shakaran commented on July 29, 2024 1

@MartinLyne congratulations for your new pcntl_fork() for main thread life!!

$pid = pcntl_fork();
if ($pid == -1) {
     die('Oops some conception problem');
} else if ($pid) {
     // MartinLyne is the parent
     pcntl_wait($status); //Protect against Zombie children ;)
} else {
     // your new baby child life
}

When you can leave in safe thread your things, just return here again ;)

PS: Probably I will try follow and reproduce your issue/bug with fork() in some years. So all the feedback about the issue is welcome ;)

from adminthemebundle.

quentin-st avatar quentin-st commented on July 29, 2024

I don't know if there is one currently - at least nothing's documented. The best way to handle this would be to create a new type of MenuItem, don't you think?

from adminthemebundle.

shakaran avatar shakaran commented on July 29, 2024

@MartinLyne if have knowlegde, pull request are welcome to add the side nav divider, thanks

from adminthemebundle.

shakaran avatar shakaran commented on July 29, 2024

@MartinLyne @chteuchteu

Dividers are child elements, because that semantically best matches how dividers are represented in the HTML by Bootstrap.

Could you try with:

$menu->addChild('divider', ['divider' => true]);

For example:

$menu->addChild('item1');
$menu->addChild('item2');
$menu->addChild('divider', ['divider' => true]);
$menu->addChild('item3');
$menu->addChild('item3');

It should generate something like:

<li>item 1</li>
<li>item 2</li>
<li class="divider"></li>
<li>item 3</li>
<li>item 4</li>

If doesn't work, a way to implement this could be:

namespace AppBundle\Menu\Item;

use Knp\Menu\FactoryInterface;
use Knp\Menu\MenuItem;

final class DividerMenuItem extends MenuItem
{
    /**
     * @param FactoryInterface $factory
     */
    public function __construct(FactoryInterface $factory)
    {
        parent::__construct('divider', $factory);

        $this
            ->setExtra('divider', true)
            ->setAttribute('class', 'separator')
        ;
    }
}

Then, on your builder:

$menu->addChild(new DividerMenuItem($this->factory));

And on theme probable override something like:

{% block spanElement %}
    {% import 'knp_menu.html.twig' as knp_menu %}
    {% if not item.extra('divider') %} {% Don't show menu content if it's a divider %}
        <span>{{ knp_menu.attributes(item.labelAttributes) }}>
            {% if item.extra('icon') is not empty  %}
                <i class="{{ item.extra('icon') }}"></i>
            {% endif %}
            {{ block('label') }}
        </span>
    {% endif %}
{% endblock %}

from adminthemebundle.

shakaran avatar shakaran commented on July 29, 2024

@MartinLyne if you can, please give me your feedback so I can mark as closed or pending to fix if you still need something, thanks!

from adminthemebundle.

MartinLyne avatar MartinLyne commented on July 29, 2024

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.