document.php 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /***************************************************************************\
  3. * SPIP, Systeme de publication pour l'internet *
  4. * *
  5. * Copyright (c) 2001-2014 *
  6. * Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James *
  7. * *
  8. * Ce programme est un logiciel libre distribue sous licence GNU/GPL. *
  9. * Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. *
  10. \***************************************************************************/
  11. if (!defined('_ECRIRE_INC_VERSION')) return;
  12. /**
  13. * Afficher la puce statut d'un document :
  14. * en fait juste une icone independante du statut
  15. *
  16. * @param int $id
  17. * @param string $statut
  18. * @param int $id_rubrique
  19. * @param string $type
  20. * @param string $ajax
  21. * @return string
  22. */
  23. function puce_statut_document_dist($id, $statut, $id_rubrique, $type, $ajax='') {
  24. return "<img src='" . chemin_image("attachment-16.png") . "' width='16' height='16' alt='' />";
  25. }