mirror of
https://github.com/YunoHost-Apps/spip_ynh.git
synced 2024-09-03 20:25:59 +02:00
14 lines
No EOL
355 B
PHP
14 lines
No EOL
355 B
PHP
<?php
|
|
|
|
if (!defined("_ECRIRE_INC_VERSION")) return;
|
|
|
|
function urls_ieconfig_metas($table){
|
|
$table['urls']['titre'] = _T('urls:titre_type_urls');
|
|
$table['urls']['icone'] = 'url-16.png';
|
|
$table['urls']['metas_brutes'] = 'type_urls,urls_activer_controle';
|
|
$table['urls']['metas_serialize'] = 'urls_propres,urls_arbo';
|
|
|
|
return $table;
|
|
}
|
|
|
|
?>
|