ビジターに表示されるアカウント作成フォームが表示され、FormExtra イベントが起きる前。
createaccount.php 90行目
$manager->notify('RegistrationFormExtraFields', $data);
NP_Profile.php
function event_RegistrationFormExtraFields(&$data) { $field_array = explode(',',$this->getConfigValue('registration')); foreach ($field_array as $rfield) { $rfield = trim($rfield); if (!in_array($rfield,array_merge($this->nufields,$this->specialfields)) && $this->getFieldAttribute($rfield,'enabled')) { echo $data['prelabel']."\n"; echo $this->getFieldAttribute($rfield,'flabel').":\n"; echo $data['postlabel']."\n"; echo $data['prefield']."\n"; $this->doSkinVar('adminmember',$rfield,'','',999999999); echo $data['postfield']."\n"; } } }