forked from spip/medias
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
340 B
14 lines
340 B
<?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; |
|
}
|
|
|