コード例 #1
0
 /**
  * Push a single field onto the beginning of this FieldList instance.
  *
  * @param FormField $item The FormField to add
  */
 public function unshift($item)
 {
     $this->onBeforeInsert($item);
     $item->setContainerFieldList($this);
     return parent::unshift($item);
 }