Fixed problem with editing and deleting EVENTS
Please. I'm not good with English so I'm adding in the end the Spanish version because here is helped by the Google´s translation.
To edit or delete events from the admin side.
In the file "modules \ extcal \ admin \ event.php" you have to change lines 141 and 142
echo ' '._AM_EXTCAL_INFO_EDIT.'
';
echo ' '._AM_EXTCAL_INFO_DELETE;
with these lines (correcting the folder of the icons)
echo ' '._AM_EXTCAL_INFO_EDIT.'
';
echo ' '._AM_EXTCAL_INFO_DELETE;
We must also replace 170 and 171 lines
by these lines to correcting the same error
To edit or delete events from the users side you have edit the template \modules\extcal\templates\extcal_event.html" in the line 8
<a href="<{$xoops_url}>/modules/extcal/print.php?event=<{$event.event_id}>"><img src="images/print.gif" />a> <{if $isAdmin || $canEdit}><a href="edit_event.php?event=<{$event.event_id}>"><img src="images/edit.png" />a><{/if}> <{if $isAdmin}><a href="admin/event.php?op=delete&event_id=<{$event.event_id}>"><img src="images/delete.png" />a><{/if}>
For the line
<a href="<{$xoops_url}>/modules/extcal/print.php?event=<{$event.event_id}>"><img src="images/icons/print.gif" />a> <{if $isAdmin || $canEdit}><a href="edit_event.php?event=<{$event.event_id}>"><img src="images/icons/edit.png" />a><{/if}> <{if $isAdmin}><a href="admin/event.php?op=delete&event_id=<{$event.event_id}>"><img src="images/icons/delete.png" />a><{/if}>
We must also add the folder icons in the following file and lines:
modules\extcal\admin\index.php lineas 171 y 172
José Espinoza
___________Spanish
SOLUCIONADO EL PROBLEMA DE EDICIÓN y BORRADO DE EVENTOS
Por favor. NO soy muy bueno con el ingles así al final estoy agregando la versión en Español ya que esta es una traducción ayudado por el google.
Para poder editar o borrar los eventos desde el lado de administración.
En el archivo "modules\extcal\admin\event.php" hay que cambiar las líneas 141 y 142
echo ' '._AM_EXTCAL_INFO_EDIT.'
';
echo ' '._AM_EXTCAL_INFO_DELETE;
por estas líneas (corrigiendo la carpeta de los iconos respectivos)
echo ' '._AM_EXTCAL_INFO_EDIT.'
';
echo ' '._AM_EXTCAL_INFO_DELETE;
También hay que reemplazar las líneas 170 y 171
por estas corrigiendo el mismo error
Para editar o borrar eventos desde el lado del usuario hay que cambiar la linea 8
<a href="<{$xoops_url}>/modules/extcal/print.php?event=<{$event.event_id}>"><img src="images/print.gif" />a> <{if $isAdmin || $canEdit}><a href="edit_event.php?event=<{$event.event_id}>"><img src="images/edit.png" />a><{/if}> <{if $isAdmin}><a href="admin/event.php?op=delete&event_id=<{$event.event_id}>"><img src="images/delete.png" />a><{/if}>
por la siguiente linea
<a href="<{$xoops_url}>/modules/extcal/print.php?event=<{$event.event_id}>"><img src="images/icons/print.gif" />a> <{if $isAdmin || $canEdit}><a href="edit_event.php?event=<{$event.event_id}>"><img src="images/icons/edit.png" />a><{/if}> <{if $isAdmin}><a href="admin/event.php?op=delete&event_id=<{$event.event_id}>"><img src="images/icons/delete.png" />a><{/if}>
Hay que agregar la carpeta ICONS en el siguiente archivo y lineas
modules\extcal\admin\index.php lineas 171 y 172
José Espinoza