I don't want to declare a variable just for something so small.. check it out
$value = $this->getValue();
echo $value['Setting']['value'];
/\ $this->getValue() returns a array..
There is a way to use like this:
echo $this->getValue()['Setting']['value'];
? thanks