functions.php 479 B

12345678910111213141516171819202122
  1. <?php
  2. function getFilesInXML($files)
  3. {
  4. $values = array();
  5. if (isset($files->file)) {
  6. foreach ($files->file as $file) {
  7. if ((string)$file == false) {
  8. continue;
  9. }
  10. $values[] = array(
  11. 'name' => (string)$file,
  12. 'description' => $file['description'],
  13. 'path' => (string)$file
  14. );
  15. }
  16. }
  17. return $values;
  18. }