diff options
author | sembrestels <sembrestels@riseup.net> | 2011-10-13 02:39:43 +0200 |
---|---|---|
committer | sembrestels <sembrestels@riseup.net> | 2011-10-13 02:39:43 +0200 |
commit | 090e2188026c76ac396c919b27404dc7cb110bf8 (patch) | |
tree | 9f7f3a1278aa0a09f168abdc0db98f7de1788870 /lib/dokuwiki/conf/mediameta.php | |
download | elgg-090e2188026c76ac396c919b27404dc7cb110bf8.tar.gz elgg-090e2188026c76ac396c919b27404dc7cb110bf8.tar.bz2 |
Dokuwiki module for Elgg 1.7
Diffstat (limited to 'lib/dokuwiki/conf/mediameta.php')
-rw-r--r-- | lib/dokuwiki/conf/mediameta.php | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/lib/dokuwiki/conf/mediameta.php b/lib/dokuwiki/conf/mediameta.php new file mode 100644 index 000000000..ba7117643 --- /dev/null +++ b/lib/dokuwiki/conf/mediameta.php @@ -0,0 +1,57 @@ +<?php +/** + * This configures which meta data will be editable through + * the media manager. Each field of the array is an array with the + * following contents: + * fieldname - Where data will be saved (EXIF or IPTC field) + * label - key to lookup in the $lang var, if not found printed as is + * htmltype - 'text' or 'textarea' + * lookups - array additional fields to lookup the data (EXIF or IPTC fields) + * + * The fields are not ordered continously to make inserting additional items + * in between simpler. + * + * This is a PHP snippet, so PHP syntax applies. + * + * Note: $fields is not a global variable and will not be available to any + * other functions or templates later + * + * You may extend or overwrite this variable in a optional + * conf/mediameta.local.php file + * + * For a list of available EXIF/IPTC fields refer to + * http://www.dokuwiki.org/devel:templates:detail.php + */ + + +$fields = array( + 10 => array('Iptc.Headline', + 'img_title', + 'text'), + + 20 => array('Iptc.Caption', + 'img_caption', + 'textarea', + array('Exif.UserComment', + 'Exif.TIFFImageDescription', + 'Exif.TIFFUserComment')), + + 30 => array('Iptc.Byline', + 'img_artist', + 'text', + array('Exif.TIFFArtist', + 'Exif.Artist', + 'Iptc.Credit')), + + 40 => array('Iptc.CopyrightNotice', + 'img_copyr', + 'text', + array('Exif.TIFFCopyright', + 'Exif.Copyright')), + + 50 => array('Iptc.Keywords', + 'img_keywords', + 'text', + array('Exif.Category')), +); + |