functions.php 396 B

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