Index: trunk/phase3/includes/Exif.php |
— | — | @@ -84,6 +84,8 @@ |
85 | 85 | |
86 | 86 | /** |
87 | 87 | * Constructor |
| 88 | + * |
| 89 | + * @param string $file |
88 | 90 | */ |
89 | 91 | function Exif( $file ) { |
90 | 92 | /** |
— | — | @@ -305,8 +307,6 @@ |
306 | 308 | } |
307 | 309 | } |
308 | 310 | |
309 | | - /**#@-*/ |
310 | | - |
311 | 311 | /** |
312 | 312 | * Make $this->mFilteredExifData |
313 | 313 | */ |
— | — | @@ -377,7 +377,9 @@ |
378 | 378 | |
379 | 379 | /**#@+ |
380 | 380 | * Validates if a tag value is of the type it should be according to the Exif spec |
381 | | - * |
| 381 | + * |
| 382 | + * @access private |
| 383 | + * |
382 | 384 | * @param mixed $in The input value to check |
383 | 385 | * @return bool |
384 | 386 | */ |
— | — | @@ -472,6 +474,8 @@ |
473 | 475 | /** |
474 | 476 | * Validates if a tag has a legal value according to the Exif spec |
475 | 477 | * |
| 478 | + * @access private |
| 479 | + * |
476 | 480 | * @param string $tag The tag to check |
477 | 481 | * @param mixed $val The value of the tag |
478 | 482 | * @return bool |
— | — | @@ -516,6 +520,8 @@ |
517 | 521 | /** |
518 | 522 | * Conviniance function for debugging output |
519 | 523 | * |
| 524 | + * @access private |
| 525 | + * |
520 | 526 | * @param mixed $in |
521 | 527 | * @param string $fname |
522 | 528 | * @param mixed $action |
— | — | @@ -945,6 +951,8 @@ |
946 | 952 | /** |
947 | 953 | * Conviniance function for getFormattedData() |
948 | 954 | * |
| 955 | + * @access private |
| 956 | + * |
949 | 957 | * @param string $tag The tag name to pass on |
950 | 958 | * @param string $val The value of the tag |
951 | 959 | * @param string $arg An argument to pass ($1) |
— | — | @@ -957,6 +965,11 @@ |
958 | 966 | } |
959 | 967 | |
960 | 968 | /** |
| 969 | + * Format a number, convert numbers from fractions into floating point |
| 970 | + * numbers |
| 971 | + * |
| 972 | + * @access private |
| 973 | + * |
961 | 974 | * @param mixed $num The value to format |
962 | 975 | * @return mixed A floating point number or whatever we were fed |
963 | 976 | */ |