mirror of
https://github.com/YunoHost-Apps/spip_ynh.git
synced 2024-09-03 20:25:59 +02:00
14 lines
No EOL
321 B
PHP
14 lines
No EOL
321 B
PHP
<?php
|
|
|
|
if (!defined("_ECRIRE_INC_VERSION")) return;
|
|
|
|
// On déclare ici la config du core
|
|
function breves_ieconfig_metas($table){
|
|
$table['breves']['titre'] = _T('breves:titre_breves');
|
|
$table['breves']['icone'] = 'breve-16.png';
|
|
$table['breves']['metas_brutes'] = 'activer_breves';
|
|
|
|
return $table;
|
|
}
|
|
|
|
?>
|