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