for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SilverShop\Extension;
use SilverShop\Forms\SetLocationForm;
use SilverStripe\Core\Extension;
class LocationFormPageExtension extends Extension
{
private static $allowed_actions = [
$allowed_actions
'SetLocationForm',
];
public function SetLocationForm()
return SetLocationForm::create($this->owner);
}