Jump to content

How to get employee profile prermesions in backoffice twig template (Prestashop 1.7)


ZiedDams

Recommended Posts

im overriding the Admin\Product\CatalogPage\Lists\product_table.html.twig and i added new columns in the table but i wanted to ristrect this columns for certain profiles (admin & super Admin) the problem is that i don't have access to the connected employee data, Any Ideas ?

Link to comment
Share on other sites

  • 2 weeks later...
  • 2 years later...

You can also add it directly into the core by editing

\src\PrestaShopBundle\Twig\LayoutExtension.php

into the return vat of the function

public function getGlobals()

as such:

return [
            // Add required globals here
            'employee_id' => $this->context->getContext()->employee->id,
            'employee_id_profile' => $this->context->getContext()->employee->id_profile,
            // to here
            'theme' => $this->context->getContext()->shop->theme,
            'default_currency' => $defaultCurrency,
            'default_currency_symbol' => $defaultCurrency instanceof Currency ? $defaultCurrency->getSymbol() : null,
            'root_url' => $rootUrl,
            'js_translatable' => [],
            'rtl_suffix' => $this->context->getContext()->language->is_rtl ? '_rtl' : '',
        ];

Not ideal to edit the core, but better than nothing.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...