Lines Matching full:id
7 * - id The id of the plugin instance which should be exported
27 $dID = $_GET['id'];
74 * Remove unwanted chars from ID
76 * Cleans a given ID to only use allowed characters. Accented characters are
100 $id = trim($raw_id);
101 $id = utf8_strtolower($id);
104 $id = strtr($id,';',':');
106 $id = strtr($id,'/',':');
108 $id = strtr($id,'/',$sepchar);
111 if($conf['deaccent'] == 2 || $ascii) $id = utf8_romanize($id);
112 if($conf['deaccent'] || $ascii) $id = utf8_deaccent($id,-1);
115 $id = utf8_stripspecials($id,$sepchar,'\*');
117 if($ascii) $id = utf8_strip($id);
120 $id = preg_replace($sepcharpat,$sepchar,$id);
121 $id = preg_replace('#:+#',':',$id);
122 $id = trim($id,':._-');
123 $id = preg_replace('#:[:\._\-]+#',':',$id);
125 $cache[$raw_id] = $id;
127 return($id);
132 * returns the full path to the meta file specified by ID and extension
139 function metaFN($id,$ext){ argument
142 $id = cleanID($id);
143 $id = str_replace(':','/',$id);
144 $fn = $conf['metadir'].'/'.utf8_encodeFN($id).$ext;