× Please submit new Bug Reports on GitHub: github.com/Jensen-Technologies/component-creator-issues/issues

Edit button

3 años 10 meses antes #9775 por MULTINOVUM sp. z o.o.
Edit button Publicado por MULTINOVUM sp. z o.o.
When user create item, and parameters is set to "can adit own", he should see EDIT button below single item, but there is no button (he see edid icon on list items, but not in single item).

I fixed it change this:

$canEdit = JFactory::getUser()->authorise('core.edit', 'com_mycomponent.' . $this->item->id);

if (!$canEdit && JFactory::getUser()->authorise('core.edit.own', 'com_mycomponent' . $this->item->id))
{
$canEdit = JFactory::getUser()->id == $this->item->created_by;
}

to this:
$canEdit = JFactory::getUser()->authorise('core.edit', 'com_mycomponent.' . $this->item->id);

if (!$canEdit && JFactory::getUser()->authorise('core.edit.own', 'com_mycomponent.' . $this->item->id))
{
$canEdit = JFactory::getUser()->id == $this->item->created_by;
}

(I add dot after 'com_mycomponent)
and now user can see that EDIT button

Am I correct?
Is this bug on Component Creator?

Por favor, Identificarse o Crear cuenta para unirse a la conversación.

3 años 10 meses antes #9778 por Carl Fuentes
Respuesta de Carl Fuentes sobre el tema Edit button
It was incorrect to add "." into the code.
I have tested this function and it worked as it should.

Can you make sure that user trying to edit the item is the owner of the item. Also make sure checked out of item for the edit button to show.

Por favor, Identificarse o Crear cuenta para unirse a la conversación.

3 años 10 meses antes #9784 por MULTINOVUM sp. z o.o.
Respuesta de MULTINOVUM sp. z o.o. sobre el tema Edit button
User is owner for sure.

Is there any special function to show or hide EDIT button?

Setting of permissions is not enough?

Por favor, Identificarse o Crear cuenta para unirse a la conversación.

3 años 1 mes antes #9836 por Emmanuel Tsalampounis
Respuesta de Emmanuel Tsalampounis sobre el tema Edit button
Please create a bug report at: github.com/aDaneInSpain/component-creator-issues
with your component name and the environment that you are testing in order to see if it's a bug or something wrong on your configuration.

Por favor, Identificarse o Crear cuenta para unirse a la conversación.

Tiempo de carga de la página: 0.126 segundos
Gracias a Foro Kunena

Utilizamos cookies propias y de terceros para mejorar nuestros servicios y mostrarle publicidad relacionada con sus preferencias mediante el análisis de sus hábitos de navegación. Si continua navegando, consideramos que acepta su uso.