Fonction Php de #CHEMIN

Bonjour,

Pour écrire un plugin, et notamment rajouter une feuille de style, j'ai mis :
- Dans plugin.xml

  <pipeline>
    <nom>insert_head</nom>
    <inclure>head.php</inclure>
  </pipeline>

- Dans head.php

function actice_insert_head($flux){
   $flux .= "<link rel='stylesheet' href='#CHEMIN{actice_styles.css}' type='text/css' media='all' />/n";
return $flux;
}

Quelle est la fonction php correspondant à #CHEMIN ??

J'ai cherché ici sans succès :
http://doc.spip.org/spip.php?page=recherche&recherche=chemin

Merci

--
Stéphane

Jeune Chambre Economique : se former en servant la communauté
  http://www.jce-saintes.org - http://www.jce-poitoucharentes.org

    BTS Electrotechnique *** http://enselec.santonum.eu

Le 22/03/2010 09:44, Stéphane Santon a écrit :

Quelle est la fonction php correspondant à #CHEMIN ??

find_in_path()

Éric