21309 Posts in 5738 Topics by 2603 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 927 Views |
-
Update Page Information on Front End

26 February 2010 at 8:14am
I have created Profile Pages that have a Member assigned to them.
class ProfilePage extends Page {
static $db = array(
'MemberName' => 'Varchar(255)'
);
static $has_one = array(
'Member' => 'Member'
);
function getCMSFields() {
$fields = parent::getCMSFields();
$memberfield = new HasOneDataObjectManager(
$this,
'Member',
'Member',
array(
'FirstName' => 'First Name',
'Surname' => 'Last Name',
'Email' => 'Email'
),
'getCMSFields_forPopup'
);
$fields->addFieldToTab('Root.Content.Member', $memberfield);
return $fields;
}
}class EditProfilePage_Controller extends Page_Controller {}
I also created an Edit Profile Page that has a form. Now what I want to be able to do is when the signed in member fills out the form and hits submit the form update the Profile Page who's "MemberID" matches that of the Member's "ID". How do I do that? I can't seem to figure it out.
class EditProfilePage extends Page {}
class EditProfilePage_Controller extends Page_Controller {
public function init() {
parent::init();
}function EditProfile() {
$fields = new FieldSet(
new TextField('BandName', 'Band Name')
);
$actions = new FieldSet(new FormAction("UpdateProfile", "Update"));
return new Form($this, "EditProfile", $fields, $actions);
}
function UpdateProfile($data, $form) {
// ?????
}
} -
Re: Update Page Information on Front End

27 February 2010 at 1:15am Last edited: 27 February 2010 1:16am
Hi!
I’ve never done it myself, but looking at the registration module today I found an EditDetailsPage that could help you: http://silverstripe.org/registration-module/
-
Re: Update Page Information on Front End

3 March 2010 at 3:38pm
hi
you need to add member id to the form, so you know what member to update.
...
new HiddenField('memberID','',$thisMemberID);
...now you need to update the member.
//find member
$member=DataObject::get_by_id('Member',$data['memberID']);
if($member){
$member->BandName = $data['BandName'];
$member->write();
}hope it helps
cheers
| 927 Views | ||
|
Page:
1
|
Go to Top |


