Bueno en la duda inicial de leer el XML puedes hacer algo así rápido:
Código PHP:
Ver original<?php
$sxe = new SimpleXMLElement($xml);
function valor($att, $sxe) {
$item = $sxe->xpath('//item[@name="' . $att . '"]');
return $item[0];
}
echo valor('contextMenuMove', $sxe);
o tal vez algo así:
Código PHP:
Ver original<?php
$sxe = new SimpleXMLElement($xml);
$item = $sxe->xpath('//item');
foreach ($item as $i) {
$att = $i->attributes();
$item[(string) $att['name']] = (string) $i;
}
echo $item['modulesTitle'];