Silverstripe dynamically add object to dataobject

1k Views Asked by At

How can I dynamically add data to data-object on entering the cms?

So I need to know how to execute a function on loading the cms (SS 2.4)

Thanks for helping. Till.

I want to add 5 entries like:

$curDate = date("Y-m-d");
for($i=0; $i< 5; $i++){

        $newDayMenue = new DayMenue;
        $newDayMenue->Date = $curDate;
        $newDayMenue->write();
    }

DayMenue.php:

class DayMenue extends DataObject {
    static $db = array(
        'Date' => 'Date'
    );

    static $has_one = array(
        'DayMenueHolder' => 'DayMenueHolder'    
    );


    static $many_many = array(
        'Foods' => 'Food'
    );



    function getCMSFields_forPopup() {
        $foods = DataObject::get('Food');

            $dateField = new DateField('Date', 'Datum');
            $dateField->setConfig('showcalendar', true);

        $fields = new FieldSet();

        $fields->push($dateField);
        if($foods){
        $fields->push(new CheckboxSetField('Foods', '', $foods->toDropDownMap('ID', 'Titel')));
        }

        return $fields;
    }

    function getMyDate() { 
        return $this->obj('Date')->Nice_Weekday();
    }   
}
0

There are 0 best solutions below