Skip to content

Instantly share code, notes, and snippets.

@Uriel29
Created September 16, 2014 18:25
Show Gist options
  • Save Uriel29/21d6c230e87c578a6d00 to your computer and use it in GitHub Desktop.
Save Uriel29/21d6c230e87c578a6d00 to your computer and use it in GitHub Desktop.
Botões editar e apagar um dado do Seblod. (campos Icon do seblod)
<?php
// No Direct Access
defined( '_JEXEC' ) or die;
?>
<div>
<a href="<?php echo $cck->getLink('editar'); ?> "> <img src="images/editar.png"/></a>
</div>
<a href="<?php echo $cck->getLink('deletar'); ?> " onclick="if(!confirm('Você tem certeza que quer apagar este item ?')){return false;}"><img src="images/apagar.png"/></a>
<div>
<a href="<?php echo $cck->getLink('titulo'); ?> "> <?php echo $cck->getValue('titulo'); ?> </a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment