import v1.1.0_beta1 | 2009-08-21
This commit is contained in:
@ -1,79 +1,85 @@
|
||||
<? if ($this->user->role != User::ROLE_GUEST ): ?>
|
||||
<?php if ($this->user->role != Users_Model_User::ROLE_GUEST ): ?>
|
||||
<h3>
|
||||
<?= $this->translate('Hello, %s', Zend_Filter::get($this->user->username, 'HtmlEntities')) ?>
|
||||
<?php echo $this->translate('Hello, %s', $this->escape($this->user->username)) ?>
|
||||
</h3>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="<?= $this->base ?>/users/profile"><?= $this->translate('Account') ?></a>
|
||||
<a href="<?php echo $this->base ?>/users/profile"><?= $this->translate('Account') ?></a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="<?= $this->base ?>/users/personalinfo"><?= $this->translate('Personal Info') ?></a>
|
||||
<a href="<?php echo $this->base ?>/users/personalinfo"><?= $this->translate('Personal Info') ?></a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="<?= $this->base ?>/sites"><?= $this->translate('Sites database') ?></a>
|
||||
<a href="<?php echo $this->base ?>/sites"><?= $this->translate('Sites database') ?></a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="<?= $this->base ?>/history"><?= $this->translate('History Log') ?></a>
|
||||
<a href="<?php echo $this->base ?>/history"><?= $this->translate('History Log') ?></a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="<?= $this->base ?>/users/login/logout"><?= $this->translate('Logout') ?></a>
|
||||
<a href="<?php echo $this->base ?>/users/login/logout"><?= $this->translate('Logout') ?></a>
|
||||
</li>
|
||||
</ul>
|
||||
<? if ($this->user->role == User::ROLE_ADMIN): ?>
|
||||
<?php if ($this->user->role == Users_Model_User::ROLE_ADMIN): ?>
|
||||
<hr />
|
||||
<h3><?= $this->translate('Admin options') ?></h3>
|
||||
<h3><?php echo $this->translate('Admin options') ?></h3>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="<?= $this->base ?>/users/manageusers"><?= $this->translate('Manage Users') ?></a>
|
||||
<a href="<?php echo $this->base ?>/users/manageusers"><?= $this->translate('Manage Users') ?></a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="<?= $this->base ?>/messageusers"><?= $this->translate('Message Users') ?></a>
|
||||
<a href="<?php echo $this->base ?>/messageusers"><?= $this->translate('Message Users') ?></a>
|
||||
</li>
|
||||
<li>
|
||||
<? if ($this->maintenanceEnabled): ?>
|
||||
<a href="<?= $this->base ?>/maintenancemode/disable"><?= $this->translate('Disable Maintenance Mode') ?></a>
|
||||
<? else: ?>
|
||||
<a href="<?= $this->base ?>/maintenancemode/enable"><?= $this->translate('Enable Maintenance Mode') ?></a>
|
||||
<? endif ?>
|
||||
<?php if ($this->maintenanceEnabled): ?>
|
||||
<a href="<?php echo $this->base ?>/maintenancemode/disable"><?= $this->translate('Disable Maintenance Mode') ?></a>
|
||||
<?php else: ?>
|
||||
<a href="<?php echo $this->base ?>/maintenancemode/enable"><?= $this->translate('Enable Maintenance Mode') ?></a>
|
||||
<?php endif ?>
|
||||
</li>
|
||||
<li>
|
||||
<a href="<?= $this->base ?>/stats"><?= $this->translate('Statistics') ?></a>
|
||||
<a href="<?php echo $this->base ?>/stats"><?= $this->translate('Statistics') ?></a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="<?php echo $this->base ?>/cid"><?= $this->translate('About Community-ID') ?></a>
|
||||
</li>
|
||||
</ul>
|
||||
<? endif ?>
|
||||
<? else: ?>
|
||||
<? if ($this->underMaintenance): ?>
|
||||
<?php endif ?>
|
||||
<?php else: ?>
|
||||
<?php if ($this->underMaintenance): ?>
|
||||
<div class="messages_small">
|
||||
<?= $this->translate('User access is currently disabled for system maintenance.<br />Please try again later') ?>
|
||||
<?php echo $this->translate('User access is currently disabled for system maintenance.<br />Please try again later') ?>
|
||||
</div>
|
||||
<? endif ?>
|
||||
<form id="loginForm" action="<?= $this->loginTargetBase ?>/users/login/authenticate" method="post">
|
||||
<dl id="credentials">
|
||||
<?= $this->loginForm->username ?>
|
||||
<?= $this->loginForm->password ?>
|
||||
</dl>
|
||||
<dl id="rememberMe">
|
||||
<?php endif ?>
|
||||
<form id="loginForm" action="<?php echo $this->loginTargetBase ?>/users/login/authenticate" method="post" class="formGrid">
|
||||
<div id="credentials">
|
||||
<?php echo $this->loginForm->username ?>
|
||||
<?php echo $this->loginForm->password ?>
|
||||
<?php if ($this->useCaptcha): ?>
|
||||
<?php echo $this->loginForm->captcha ?>
|
||||
<?php endif ?>
|
||||
</div>
|
||||
<div id="rememberMe">
|
||||
<!-- to hard to do in the ZF -->
|
||||
<input type="checkbox" name="rememberme" style="top:0" />
|
||||
<label><?= $this->translate('Remember me') ?></label>
|
||||
</dl>
|
||||
<input type="checkbox" name="rememberme" style="top:0; width:15px" />
|
||||
<label><?php echo $this->translate('Remember me') ?></label>
|
||||
</div>
|
||||
<div id="loginButton">
|
||||
<input type="submit" id="login" value="<?= $this->translate('Log in') ?>" />
|
||||
<input type="submit" id="login" value="<?php echo $this->translate('Log in') ?>" />
|
||||
<script type="text/javascript">
|
||||
var oButton = new YAHOO.widget.Button("login");
|
||||
</script>
|
||||
</div>
|
||||
<p>
|
||||
<a href="<?= $this->base ?>/users/recoverpassword" class="panel_link"><?= $this->translate('Forgot you password?') ?></a>
|
||||
<a href="<?php echo $this->base ?>/users/recoverpassword" class="panel_link"><?= $this->translate('Forgot you password?') ?></a>
|
||||
</p>
|
||||
</form>
|
||||
<hr/>
|
||||
<div id="registerNow">
|
||||
<p>
|
||||
<?= $this->translate('You don\'t have an account?') ?>
|
||||
<?php echo $this->translate('You don\'t have an account?') ?>
|
||||
<div>
|
||||
<a href="<?= $this->base ?>/users/register"><?= $this->translate('REGISTER NOW!') ?></a>
|
||||
<a href="<?php echo $this->base ?>/users/register"><?= $this->translate('REGISTER NOW!') ?></a>
|
||||
</div>
|
||||
</p> <!-- safari bug workaround -->
|
||||
</div>
|
||||
<? endif; ?>
|
||||
<?php endif; ?>
|
||||
|
@ -6,29 +6,37 @@ YAHOO.util.Event.onDOMReady(function () {
|
||||
);
|
||||
});
|
||||
</script>
|
||||
<div class="links_topright">
|
||||
<a href="#" id="links_topright_all" onclick="COMMID.usersList.init('all'); return false;">
|
||||
<?= $this->translate('All') ?>
|
||||
<div class="links_topleft">
|
||||
<div>
|
||||
<input type="text" id="search" name="search" value="<?php echo $this->translate('Enter search string') ?>" onclick="(function () {COMMID.usersList.clickOnSearch()})()" />
|
||||
<input type="button" id="goSearch" value="<?php echo $this->translate('Go') ?>" />
|
||||
<input type="button" id="clearSearch" value="<?php echo $this->translate('Clear') ?>" />
|
||||
</div>
|
||||
<a href="#" id="links_topleft_all" onclick="COMMID.usersList.init('all'); return false;">
|
||||
<?php echo $this->translate('All') ?>
|
||||
</a>
|
||||
| <a href="#" id="links_topright_confirmed" onclick="COMMID.usersList.init('confirmed'); return false;">
|
||||
<?= $this->translate('Confirmed') ?>
|
||||
| <a href="#" id="links_topleft_confirmed" onclick="COMMID.usersList.init('confirmed'); return false;">
|
||||
<?php echo $this->translate('Confirmed') ?>
|
||||
</a>
|
||||
| <a href="#" id="links_topright_unconfirmed" onclick="COMMID.usersList.init('unconfirmed'); return false;">
|
||||
<?= $this->translate('Unconfirmed') ?>
|
||||
| <a href="#" id="links_topleft_unconfirmed" onclick="COMMID.usersList.init('unconfirmed'); return false;">
|
||||
<?php echo $this->translate('Unconfirmed') ?>
|
||||
</a>
|
||||
</div>
|
||||
<div id="paging"></div>
|
||||
<div id="dt"></div>
|
||||
<? if ($this->user->role == User::ROLE_ADMIN): ?>
|
||||
<?php if ($this->user->role == Users_Model_User::ROLE_ADMIN): ?>
|
||||
<div style="margin-top:10px">
|
||||
<?= $this->translate('Total users:') ?> <span id="totalUsers"></span><br />
|
||||
<?= $this->translate('Total confirmed users:') ?> <span id="totalConfirmedUsers"></span><br />
|
||||
<?= $this->translate('Total unconfirmed users:') ?> <span id="totalUnconfirmedUsers"></span><br />
|
||||
<?php echo $this->translate('Total users:') ?> <span id="totalUsers"></span><br />
|
||||
<?php echo $this->translate('Total confirmed users:') ?> <span id="totalConfirmedUsers"></span><br />
|
||||
<?php echo $this->translate('Total unconfirmed users:') ?> <span id="totalUnconfirmedUsers"></span><br />
|
||||
</div>
|
||||
<div style="margin-top:10px">
|
||||
<input type="button" id="addUser" value="<?= $this->translate('Add User') ?>" onclick="location.href='<?= $this->base ?>/users/profile?userid=0'" />
|
||||
<input type="button" id="addUser" value="<?php echo $this->translate('Add User') ?>" onclick="location.href='<?= $this->base ?>/users/profile?userid=0'" />
|
||||
<span id="deleteUnconfirmedSpan">
|
||||
<input type="button" id="deleteUnconfirmed" value="<?= $this->translate('Delete Unconfirmed Users') ?>" />
|
||||
<input type="button" id="deleteUnconfirmed" value="<?php echo $this->translate('Delete Unconfirmed Users') ?>" />
|
||||
</span>
|
||||
<span id="sendReminderSpan">
|
||||
<input type="button" id="sendReminder" value="<?php echo $this->translate('Send Reminder') ?>" />
|
||||
</span>
|
||||
<script type="text/javascript">
|
||||
new YAHOO.widget.Button(
|
||||
@ -36,7 +44,7 @@ YAHOO.util.Event.onDOMReady(function () {
|
||||
{
|
||||
type : "push",
|
||||
onclick : {fn: function() {
|
||||
location.href='<?= $this->base ?>/users/profile?userid=0'
|
||||
location.href='<?php echo $this->base ?>/users/profile?userid=0'
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -48,6 +56,27 @@ YAHOO.util.Event.onDOMReady(function () {
|
||||
onclick : {fn: function() {COMMID.usersList.deleteUnconfirmed()}}
|
||||
}
|
||||
);
|
||||
new YAHOO.widget.Button(
|
||||
"sendReminder",
|
||||
{
|
||||
type : "push",
|
||||
onclick : {fn: function() {COMMID.usersList.sendReminder()}}
|
||||
}
|
||||
);
|
||||
new YAHOO.widget.Button(
|
||||
"goSearch",
|
||||
{
|
||||
type : "push",
|
||||
onclick : {fn: function() {COMMID.usersList.submitSearch()}}
|
||||
}
|
||||
);
|
||||
new YAHOO.widget.Button(
|
||||
"clearSearch",
|
||||
{
|
||||
type : "push",
|
||||
onclick : {fn: function() {COMMID.usersList.clearSearch()}}
|
||||
}
|
||||
);
|
||||
</script>
|
||||
</div>
|
||||
<? endif ?>
|
||||
<?php endif ?>
|
||||
|
@ -1,59 +1,29 @@
|
||||
<script>
|
||||
YAHOO.util.Event.onDOMReady(function () {
|
||||
COMMID.loader.insert(
|
||||
["connection"],
|
||||
null
|
||||
);
|
||||
});
|
||||
|
||||
COMMID.editPersonalInfo = function() {
|
||||
|
||||
return {
|
||||
save: function() {
|
||||
YAHOO.util.Connect.setForm("personalInfoForm");
|
||||
YAHOO.util.Connect.asyncRequest(
|
||||
'POST',
|
||||
'personalinfo/save',
|
||||
{
|
||||
success: function (responseObj) {COMMID.utils.replaceContent(responseObj, "personalInfo")},
|
||||
failure: COMMID.utils.asyncFailed
|
||||
},
|
||||
<form name="personalInfoForm" class="formGrid" >
|
||||
<?php foreach ($this->fields as $field): ?>
|
||||
<?php echo $field ?>
|
||||
<?php endforeach ?><br />
|
||||
<input type="button" id="save" value="<?php echo $this->translate('Save') ?>" onclick="COMMID.editPersonalInfo.save()" />
|
||||
<input type="button" id="cancel" value="<?php echo $this->translate('Cancel') ?>" onclick="COMMID.editPersonalInfo.cancel()" />
|
||||
<script type="text/javascript">
|
||||
YAHOO.util.Event.onDOMReady(function () {
|
||||
COMMID.loader.insert(
|
||||
["connection"],
|
||||
null
|
||||
);
|
||||
},
|
||||
});
|
||||
|
||||
cancel: function() {
|
||||
var transaction = YAHOO.util.Connect.asyncRequest(
|
||||
'GET',
|
||||
'personalinfo/show',
|
||||
{
|
||||
success: function (responseObj) {COMMID.utils.replaceContent(responseObj, "personalInfo")},
|
||||
failure: COMMID.utils.asyncFailed
|
||||
}
|
||||
);
|
||||
}
|
||||
};
|
||||
}();
|
||||
</script>
|
||||
<form name="personalInfoForm" class="formGrid" >
|
||||
<? foreach ($this->fields as $field): ?>
|
||||
<?= $field ?>
|
||||
<? endforeach ?><br />
|
||||
<input type="button" id="save" value="<?= $this->translate('Save') ?>" onclick="COMMID.editPersonalInfo.save()" />
|
||||
<input type="button" id="cancel" value="<?= $this->translate('Cancel') ?>" onclick="COMMID.editPersonalInfo.cancel()" />
|
||||
<script type="text/javascript">
|
||||
var oButton = new YAHOO.widget.Button(
|
||||
"save",
|
||||
{
|
||||
type : "push",
|
||||
onclick : {fn: COMMID.editPersonalInfo.save}
|
||||
onclick : {fn: COMMID.personalInfo.save}
|
||||
}
|
||||
);
|
||||
var oButton = new YAHOO.widget.Button(
|
||||
"cancel",
|
||||
{
|
||||
type : "push",
|
||||
onclick : {fn: COMMID.editPersonalInfo.cancel}
|
||||
onclick : {fn: COMMID.personalInfo.cancel}
|
||||
}
|
||||
);
|
||||
</script>
|
||||
|
@ -10,19 +10,19 @@ YAHOO.util.Event.onDOMReady(function () {
|
||||
<div id="article">
|
||||
<div id="generalTab" class="dataSection">
|
||||
<div class="formHeader">
|
||||
<h2><?= $this->translate('Personal Info') ?></h2>
|
||||
<h2><?php echo $this->translate('Personal Info') ?></h2>
|
||||
<div>
|
||||
<a href="javascript:void(0);" onclick="COMMID.personalInfo.edit();">
|
||||
<?= $this->translate('Edit') ?>
|
||||
<?php echo $this->translate('Edit') ?>
|
||||
</a>
|
||||
<img id="loadingEditPersonalInfo" src="<?= $this->base ?>/images/progress.gif" style="visibility:hidden" />
|
||||
<img id="loadingEditPersonalInfo" src="<?php echo $this->base ?>/images/progress.gif" style="visibility:hidden" />
|
||||
</div>
|
||||
</div>
|
||||
<div style="margin:10px 0">
|
||||
<em><?= $this->translate('This information will be used to automatically populate registration fields to any OpenID transaction that requires so') ?></em>
|
||||
<em><?php echo $this->translate('This information will be used to automatically populate registration fields to any OpenID transaction that requires so') ?></em>
|
||||
</div>
|
||||
<div id="personalInfo">
|
||||
<?= $this->action('show', 'personalinfo', 'users', array('userid' => $this->targetUser->id)) ?>
|
||||
<?php echo $this->action('show', 'personalinfo', 'users', array('userid' => $this->targetUser->id)) ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,12 +1,12 @@
|
||||
<div class="formGrid">
|
||||
<? foreach ($this->fields as $field): ?>
|
||||
<?php foreach ($this->fields as $field): ?>
|
||||
<div class="yui-gf">
|
||||
<div class="yui-u first">
|
||||
<?= $this->translate($field->name) ?>:
|
||||
<?php echo $this->translate($field->name) ?>:
|
||||
</div>
|
||||
<div class="yui-u">
|
||||
<?= is_null($field->value)? $this->translate('Not Entered') : $field->value ?>
|
||||
<?php echo is_null($field->value)? $this->translate('Not Entered') : $field->value ?>
|
||||
</div>
|
||||
</div>
|
||||
<? endforeach ?>
|
||||
<?php endforeach ?>
|
||||
</div>
|
||||
|
@ -10,35 +10,35 @@ YAHOO.util.Event.onDOMReady(function () {
|
||||
|
||||
<div class="accountForm">
|
||||
<div>
|
||||
<h2><?= $this->translate('Account info') ?></h2>
|
||||
<? if ($this->targetUser->id == $this->user->id): ?>
|
||||
<div class="profileLinks">
|
||||
<h2><?php echo $this->translate('Account info') ?></h2>
|
||||
<?php if ($this->targetUser->id == $this->user->id): ?>
|
||||
<div class="linksTopRight">
|
||||
<a href="javascript:void(0);" onclick="COMMID.general.editAccountInfo();">
|
||||
<?= $this->translate('Edit') ?>
|
||||
<?php echo $this->translate('Edit') ?>
|
||||
</a> |
|
||||
<a href="javascript:void(0);" onclick="COMMID.general.changePassword()" >
|
||||
<?= $this->translate('Change Password') ?>
|
||||
<?php echo $this->translate('Change Password') ?>
|
||||
</a>
|
||||
<img id="loadingAccountInfo" src="<?= $this->base ?>/images/progress.gif" style="visibility:hidden" />
|
||||
<img id="loadingAccountInfo" src="<?php echo $this->base ?>/images/progress.gif" style="visibility:hidden" />
|
||||
</div>
|
||||
<? endif ?>
|
||||
<?php endif ?>
|
||||
</div>
|
||||
<div id="accountInfo">
|
||||
<? if ($this->targetUser->id) {
|
||||
<?php if ($this->targetUser->id) {
|
||||
echo $this->action('accountinfo', 'profilegeneral', 'users', array('userid' => $this->targetUser->id));
|
||||
} else {
|
||||
// user id == 0 means we're entering info for a new user
|
||||
echo $this->action('editaccountinfo', 'profilegeneral', 'users', array('userid' => $this->targetUser->id));
|
||||
} ?>
|
||||
</div>
|
||||
<? if ($this->targetUser->id && $this->targetUser->id == $this->user->id): ?>
|
||||
<?php if ($this->targetUser->id && $this->targetUser->id == $this->user->id): ?>
|
||||
<div class="accountForm">
|
||||
<div class="profileLinks" >
|
||||
<a href="<?= $this->base ?>/users/profilegeneral/confirmdelete">
|
||||
<?= $this->translate('Delete Account') ?>
|
||||
<div class="linksTopRight" >
|
||||
<a href="<?php echo $this->base ?>/users/profilegeneral/confirmdelete">
|
||||
<?php echo $this->translate('Delete Account') ?>
|
||||
</a>
|
||||
<img id="loadingAccountInfoDummy" src="<?= $this->base ?>/images/progress.gif" style="visibility:hidden" /><!-- just for layout -->
|
||||
<img id="loadingAccountInfoDummy" src="<?php echo $this->base ?>/images/progress.gif" style="visibility:hidden" /><!-- just for layout -->
|
||||
</div>
|
||||
</div>
|
||||
<? endif ?>
|
||||
<?php endif ?>
|
||||
</div>
|
||||
|
@ -1,34 +1,34 @@
|
||||
<div class="formGrid">
|
||||
<div class="yui-gf">
|
||||
<div class="yui-u first">
|
||||
<?= $this->translate('Username') ?>:
|
||||
<?php echo $this->translate('Username') ?>:
|
||||
</div>
|
||||
<div class="yui-u">
|
||||
<?= $this->targetUser->username ?>
|
||||
<?php echo $this->targetUser->username ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="yui-gf">
|
||||
<div class="yui-u first">
|
||||
<?= $this->translate('Name') ?>:
|
||||
<?php echo $this->translate('Name') ?>:
|
||||
</div>
|
||||
<div class="yui-u">
|
||||
<?= $this->targetUser->getfullName() ?>
|
||||
<?php echo $this->targetUser->getfullName() ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="yui-gf">
|
||||
<div class="yui-u first">
|
||||
<?= $this->translate('E-mail') ?>:
|
||||
<?php echo $this->translate('E-mail') ?>:
|
||||
</div>
|
||||
<div class="yui-u">
|
||||
<?= $this->targetUser->email ?>
|
||||
<?php echo $this->targetUser->email ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="yui-gf">
|
||||
<div class="yui-u first">
|
||||
<?= $this->translate('OpenID') ?>:
|
||||
<?php echo $this->translate('OpenID') ?>:
|
||||
</div>
|
||||
<div class="yui-u">
|
||||
<?= $this->targetUser->openid ?>
|
||||
<?php echo $this->targetUser->openid ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,53 +1,24 @@
|
||||
<script>
|
||||
COMMID.changePassword = function() {
|
||||
return {
|
||||
save: function() {
|
||||
YAHOO.util.Connect.setForm("changePasswordForm");
|
||||
YAHOO.util.Connect.asyncRequest(
|
||||
"POST",
|
||||
"profilegeneral/savepassword?userid=<?= $this->targetUser->id ?>",
|
||||
{
|
||||
success: function (responseObj) {COMMID.utils.replaceContent(responseObj, "accountInfo")},
|
||||
failure: COMMID.utils.asyncFailed
|
||||
},
|
||||
null
|
||||
);
|
||||
},
|
||||
|
||||
cancel: function() {
|
||||
var transaction = YAHOO.util.Connect.asyncRequest(
|
||||
'GET',
|
||||
'profilegeneral/accountinfo?userid=' + <?= $this->targetUser->id ?>,
|
||||
{
|
||||
success: function (responseObj) {COMMID.utils.replaceContent(responseObj, "accountInfo")},
|
||||
failure: COMMID.utils.asyncFailed
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
}();
|
||||
</script>
|
||||
<form name="changePasswordForm" class="formGrid" >
|
||||
<?= $this->changePasswordForm->password1 ?>
|
||||
<?= $this->changePasswordForm->password2 ?>
|
||||
<?php echo $this->changePasswordForm->password1 ?>
|
||||
<?php echo $this->changePasswordForm->password2 ?>
|
||||
<div class="yui-gf">
|
||||
<div class="yui-u first"> </div>
|
||||
<div class="yui-u">
|
||||
<input type="button" id="save" value="<?= $this->translate('Save') ?>" onclick="COMMID.changePassword.save()" />
|
||||
<input type="button" id="cancel" value="<?= $this->translate('Cancel') ?>" onclick="COMMID.changePassword.cancel()" />
|
||||
<input type="button" id="save" value="<?php echo $this->translate('Save') ?>" onclick="COMMID.changePassword.save()" />
|
||||
<input type="button" id="cancel" value="<?php echo $this->translate('Cancel') ?>" onclick="COMMID.changePassword.cancel()" />
|
||||
<script type="text/javascript">
|
||||
var oButton = new YAHOO.widget.Button(
|
||||
"save",
|
||||
{
|
||||
type : "push",
|
||||
onclick : {fn: COMMID.changePassword.save}
|
||||
onclick : {fn: function() {COMMID.changePassword.save(<?php echo $this->targetUser->id ?>)}}
|
||||
}
|
||||
);
|
||||
var oButton = new YAHOO.widget.Button(
|
||||
"cancel",
|
||||
{
|
||||
type : "push",
|
||||
onclick : {fn: COMMID.changePassword.cancel}
|
||||
onclick : {fn: function() {COMMID.changePassword.cancel(<?php echo $this->targetUser->id ?>)}}
|
||||
}
|
||||
);
|
||||
</script>
|
||||
|
@ -1,26 +1,26 @@
|
||||
<form id="confirmDeleteForm" method="post" action="<?= $this->base ?>/users/profilegeneral/delete">
|
||||
<form id="confirmDeleteForm" method="post" action="<?php echo $this->base ?>/users/profilegeneral/delete">
|
||||
<p>
|
||||
<?= $this->translate('Why do you want to delete your Community-ID account?') ?><br />
|
||||
<?= $this->translate('Please check all that apply:') ?>
|
||||
<?php echo $this->translate('Why do you want to delete your Community-ID account?') ?><br />
|
||||
<?php echo $this->translate('Please check all that apply:') ?>
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<input type="checkbox" name="reason_test" style="top:0" /><?= $this->translate('This was just a test account') ?>
|
||||
<input type="checkbox" name="reason_test" style="top:0" /><?php echo $this->translate('This was just a test account') ?>
|
||||
</li>
|
||||
<li>
|
||||
<input type="checkbox" name="reason_foundbetter" style="top:0" /><?= $this->translate('I found a better service') ?>
|
||||
<input type="checkbox" name="reason_foundbetter" style="top:0" /><?php echo $this->translate('I found a better service') ?>
|
||||
</li>
|
||||
<li>
|
||||
<input type="checkbox" name="reason_lackedfeatures" style="top:0" /><?= $this->translate('Service lacked some key features I needed') ?>
|
||||
<input type="checkbox" name="reason_lackedfeatures" style="top:0" /><?php echo $this->translate('Service lacked some key features I needed') ?>
|
||||
</li>
|
||||
<li>
|
||||
<input type="checkbox" name="reason_none" style="top:0" /><?= $this->translate('No particular reason') ?>
|
||||
<input type="checkbox" name="reason_none" style="top:0" /><?php echo $this->translate('No particular reason') ?>
|
||||
</li>
|
||||
</ul>
|
||||
<label for="reason_comments"><?= $this->translate('Additional comments:') ?></label>
|
||||
<label for="reason_comments"><?php echo $this->translate('Additional comments:') ?></label>
|
||||
<textarea id="reason_comments" name="reason_comments"></textarea><br />
|
||||
<input type="submit" id="delete" value="<?= $this->translate('Delete Account') ?>" />
|
||||
<input type="button" id="cancel" value="<?= $this->translate('Cancel') ?>" onclick="location.href='<?= $this->base ?>/users/profile'" />
|
||||
<input type="submit" id="delete" value="<?php echo $this->translate('Delete Account') ?>" />
|
||||
<input type="button" id="cancel" value="<?php echo $this->translate('Cancel') ?>" onclick="location.href='<?= $this->base ?>/users/profile'" />
|
||||
<script type="text/javascript">
|
||||
var oButton = new YAHOO.widget.Button("delete");
|
||||
var oButton = new YAHOO.widget.Button(
|
||||
@ -28,7 +28,7 @@
|
||||
{
|
||||
type : "push",
|
||||
onclick : {fn: function() {
|
||||
location.href='<?= $this->base ?>/users/profile'
|
||||
location.href='<?php echo $this->base ?>/users/profile'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,17 +1,17 @@
|
||||
<form name="accountInfoForm" class="formGrid">
|
||||
<?= $this->accountInfoForm->username ?>
|
||||
<?= $this->accountInfoForm->firstname ?>
|
||||
<?= $this->accountInfoForm->lastname ?>
|
||||
<?= $this->accountInfoForm->email ?>
|
||||
<? if (!$this->targetUser->id) {
|
||||
<?php echo $this->accountInfoForm->username ?>
|
||||
<?php echo $this->accountInfoForm->firstname ?>
|
||||
<?php echo $this->accountInfoForm->lastname ?>
|
||||
<?php echo $this->accountInfoForm->email ?>
|
||||
<?php if (!$this->targetUser->id) {
|
||||
echo $this->accountInfoForm->password1;
|
||||
echo $this->accountInfoForm->password2;
|
||||
} ?>
|
||||
<div class="yui-gf">
|
||||
<div class="yui-u first"> </div>
|
||||
<div class="yui-u">
|
||||
<input type="button" id="save" value="<?= $this->translate('Save') ?>" onclick="COMMID.editAccountInfo.save()" />
|
||||
<input type="button" id="cancel" value="<?= $this->translate('Cancel') ?>" onclick="COMMID.editAccountInfo.cancel()" />
|
||||
<input type="button" id="save" value="<?php echo $this->translate('Save') ?>" onclick="COMMID.editAccountInfo.save()" />
|
||||
<input type="button" id="cancel" value="<?php echo $this->translate('Cancel') ?>" onclick="COMMID.editAccountInfo.cancel()" />
|
||||
<script type="text/javascript">
|
||||
YAHOO.util.Event.onDOMReady(function () {
|
||||
new YAHOO.widget.Button(
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?= $this->translate('Please enter your E-mail below to receive a link to reset your password') ?>
|
||||
<form method="post" action="<?= $this->base ?>/users/recoverpassword/send">
|
||||
<?= $this->form->email ?>
|
||||
<input type="submit" id="send" value="<?= $this->translate('Send') ?>" />
|
||||
<?php echo $this->translate('Please enter your E-mail below to receive a link to reset your password') ?>
|
||||
<form method="post" action="<?php echo $this->base ?>/users/recoverpassword/send">
|
||||
<?php echo $this->form->email ?>
|
||||
<input type="submit" id="send" value="<?php echo $this->translate('Send') ?>" />
|
||||
<script type="text/javascript">
|
||||
var oButton = new YAHOO.widget.Button("send");
|
||||
</script>
|
||||
|
@ -1,12 +1,12 @@
|
||||
<h2><?= $this->translate('Please read the following EULA in order to continue') ?></h2>
|
||||
<h2><?php echo $this->translate('Please read the following EULA in order to continue') ?></h2>
|
||||
<form name="eulaForm" action="accepteula" method="post">
|
||||
<input type="hidden" name="token" value="<?= $this->token ?>" />
|
||||
<input type="hidden" name="token" value="<?php echo $this->token ?>" />
|
||||
<div>
|
||||
<textarea rows="30" style="width:700px"><?= $this->eula ?></textarea>
|
||||
<textarea rows="30" style="width:700px"><?php echo $this->eula ?></textarea>
|
||||
</div>
|
||||
<div style="margin-top:20px">
|
||||
<input type="submit" id="agree" value="<?= $this->translate('I AGREE') ?>" />
|
||||
<input type="submit" id="disagree" value="<?= $this->translate('I DISAGREE') ?>" onclick="this.form.action='declineeula'; return true" />
|
||||
<input type="submit" id="agree" value="<?php echo $this->translate('I AGREE') ?>" />
|
||||
<input type="submit" id="disagree" value="<?php echo $this->translate('I DISAGREE') ?>" onclick="this.form.action='declineeula'; return true" />
|
||||
<script>
|
||||
YAHOO.util.Event.onDOMReady(function () {
|
||||
COMMID.loader.insert(
|
||||
|
@ -1,13 +1,13 @@
|
||||
<h2><?= $this->translate('Registration Form') ?></h2>
|
||||
<form name="registration" method="post" action="<?= $this->base ?>/users/register/save" class="formGrid" >
|
||||
<?= $this->form->firstname ?>
|
||||
<?= $this->form->lastname ?>
|
||||
<?= $this->form->email ?>
|
||||
<?= $this->form->username ?>
|
||||
<?= $this->form->password1 ?>
|
||||
<?= $this->form->password2 ?>
|
||||
<?= $this->form->captcha ?>
|
||||
<input type="submit" id="send" value="<?= $this->translate('Send') ?>" />
|
||||
<h2><?php echo $this->translate('Registration Form') ?></h2>
|
||||
<form name="registration" method="post" action="<?php echo $this->base ?>/users/register/save" class="formGrid" >
|
||||
<?php echo $this->form->firstname ?>
|
||||
<?php echo $this->form->lastname ?>
|
||||
<?php echo $this->form->email ?>
|
||||
<?php echo $this->form->username ?>
|
||||
<?php echo $this->form->password1 ?>
|
||||
<?php echo $this->form->password2 ?>
|
||||
<?php echo $this->form->captcha ?>
|
||||
<input type="submit" id="send" value="<?php echo $this->translate('Send') ?>" />
|
||||
<script type="text/javascript">
|
||||
var oButton = new YAHOO.widget.Button("send");
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user