I have this:
class.template.php
PHP Code:
$this->setParams('acc_frndreq', $users->getInfo($_SESSION['user']['id'], 'block_newfriends')); $this->setParams('acc_trade', $users->getInfo($_SESSION['user']['id'], 'accept_trading')); $this->setParams('acc_online', $users->getInfo($_SESSION['user']['id'], 'hide_online'));
account settings:
PHP Code:
<form method="post" id="profileForm"> <h3>Block Trading</h3> <p>Setting to "0" will not allow any user to trade you. Setting to "1" will allow any user to trade you.</p> <p><label>Setting:<input type="text" name="acc_trade" size="32" maxlength="32" value="{acc_trade}" id="avatarmotto"></label></p> <h3>Block New Friends</h3> <p>Setting to "1" will not allow any user to add you. Setting to "0" will allow any user to add you.</p> <p><label>Setting:<input type="text" name="acc_frndreq" size="32" maxlength="32" value="{acc_frndreq}" id="avatarmotto"></label></p> <h3>Online Visibility</h3> <p>Setting to "1" will not allow other users to notice your online status. Setting to "0" will allow other users to notice your online status. <br/> 0 = ON | 1 = OFF</p> <p><label>Setting:<input type="text" name="acc_online" size="32" maxlength="32" value="{acc_online}" id="avatarmotto"></label></p> <h3>Follow Ability</h3> <p>Setting to "1" will not allow your friends to Follow you. Setting to "0" will allow your friends to follow you.<br/> 0 = ON | 1 = OFF</p> <p><label>Setting:<input type="text" name="acc_follow" size="32" maxlength="32" value="{acc_follow}" id="avatarmotto"></label></p> <div class="settings-buttons"> <input type="submit" value="Save changes" name="settings" class="submit" style="float:right"> </div> </form>