modules/user/templtes/user_edituser.html
26行目付近に uname を入力可能にします。
<!-- {$thisUser->getShow('uname')} -->modules/user/forms/EditUserForm.class.php に uname追加
<{xoops_input name=uname size=25 maxlength=25 value=$thisUser->getShow('uname')}>
27行目付近
$this->mFormProperties['uid'] =& new XCube_IntProperty('uid');
$this->mFormProperties['uname'] =& new XCube_StringProperty('uname');
$this->mFormProperties['name'] =& new XCube_StringProperty('name');
192行目付近
function update(&$obj)
{
$obj->set('uname', $this->get('uname')); // bluemooninc
$obj->set('name', $this->get('name'));
0 件のコメント:
コメントを投稿