aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio <s1lv10@uol.com.br>2010-04-23 18:02:47 -0300
committerSilvio <s1lv10@uol.com.br>2010-04-23 18:02:47 -0300
commite68a8fa5e39991cdde75d3770a0cd4e0429f3b3d (patch)
tree0f8a5bd565199d92dcb4b9570585c4a47cd769f2
parent6def198e178665a3e575d833472e90fea559a9b2 (diff)
downloadexif-e68a8fa5e39991cdde75d3770a0cd4e0429f3b3d.tar.gz
exif-e68a8fa5e39991cdde75d3770a0cd4e0429f3b3d.tar.bz2
Adding skeleton for readWMPTags()
-rw-r--r--exif.class.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/exif.class.php b/exif.class.php
index 0b30a99..967066d 100644
--- a/exif.class.php
+++ b/exif.class.php
@@ -192,6 +192,7 @@ Class Exif {
* arrays and structures, we have to deal with those as well.
*
* @return array
+ * Mapping between CCK and WMP fields.
*/
public function getWMPFields() {
return array(
@@ -261,5 +262,11 @@ Class Exif {
'type' => 'property',
),
);
- }
+ }
+
+ /**
+ * Read WMP data from an image file.
+ */
+ public function readWMPTags($file, $arTagNames=array()) {
+ }
}