TitanFramework::createSampleContentPage PHP Method

createSampleContentPage() public method

Use createSampleContent() with 'type' => 'sample-panel' or createSamplePanel() instead.
Since: 1.11
public createSampleContentPage ( array $settings ) : TitanFrameworkAdminPage
$settings array The arguments for creating the sample conent page.
return TitanFrameworkAdminPage The created sample coennt page.
    public function createSampleContentPage($settings)
    {
        $settings['type'] = 'sample-panel';
        return $this->createContainer($settings);
    }