SilverStripe 3.1 - Page creating & publishing from the FrontEnd
for our company intranet, I created a page with a Form to create an E-Mailing from the frontend (Create a New E-Mailing Page). The page should be Live after saving the form. I did it like this, but I think I made a mistake somewhere. Because KW1, KW2, Date and SendDate are only visible on the frontend if I go to the backend and click publish again. public static $allowed_actions = array( 'MailingForm' ); public function MailingForm() { $date = new DateField('EndDate', 'Gültig bis'); $date->setConfig('showcalendar', true); $sendDate = new DateField('SendDate', 'Versanddatum'); $sendDate-