Datatypes\RadioButtonList\PrevalueEditor::load PHP Method

load() public method

Load Radiobutton List prevalue editor
public load ( ) : string
return string
    public function load()
    {
        return $this->addPath(__DIR__)->render('radiobuttonlist-prevalue.phtml', array('parameters' => $this->getConfig()));
    }

Usage Example

Beispiel #1
0
 /**
  * Test
  *
  * @return void
  */
 public function testLoad()
 {
     $this->object->setConfig(array('key' => 'value'));
     $this->assertInternalType('string', $this->object->load());
 }
PrevalueEditor