import v1.1.0_beta1 | 2009-08-21
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
<h3>
|
||||
<?= $this->translate('The installation was performed successfully') ?>
|
||||
<?php echo $this->translate('The installation was performed successfully') ?>
|
||||
</h3>
|
||||
<div style="margin-top:20px">
|
||||
<div>
|
||||
@ -7,13 +7,13 @@
|
||||
Please note that this user is only meant for administrative tasks, and cannot have an OpenID credential.
|
||||
</div>
|
||||
<div style="margin-top:20px">
|
||||
<input type="button" id="start" value="<?= $this->translate('Finish') ?>" />
|
||||
<input type="button" id="start" value="<?php echo $this->translate('Finish') ?>" />
|
||||
<div>
|
||||
<script type="text/javascript">
|
||||
var oButton = new YAHOO.widget.Button(
|
||||
"start",
|
||||
{
|
||||
onclick: {fn: function() {location.href="<?= $this->base ?>"}}
|
||||
onclick: {fn: function() {location.href="<?php echo $this->base ?>"}}
|
||||
}
|
||||
);
|
||||
</script>
|
||||
|
@ -1,15 +1,15 @@
|
||||
<h3>
|
||||
<?= $this->translate('Database and E-mail information') ?>
|
||||
<?php echo $this->translate('Database and E-mail information') ?>
|
||||
</h3>
|
||||
<form name="installform" method="post" action="<?= $this->base ?>/install/credentials/save" class="longLabelsForm">
|
||||
<form name="installform" method="post" action="<?php echo $this->base ?>/install/credentials/save" class="longLabelsForm">
|
||||
<dl>
|
||||
<?= $this->form->hostname ?>
|
||||
<?= $this->form->dbname ?>
|
||||
<?= $this->form->dbusername ?>
|
||||
<?= $this->form->dbpassword ?>
|
||||
<?= $this->form->supportemail ?>
|
||||
<?php echo $this->form->hostname ?>
|
||||
<?php echo $this->form->dbname ?>
|
||||
<?php echo $this->form->dbusername ?>
|
||||
<?php echo $this->form->dbpassword ?>
|
||||
<?php echo $this->form->supportemail ?>
|
||||
</dl>
|
||||
<input type="submit" id="send" value="<?= $this->translate('Send') ?>" />
|
||||
<input type="submit" id="send" value="<?php echo $this->translate('Send') ?>" />
|
||||
<script type="text/javascript">
|
||||
var oButton = new YAHOO.widget.Button("send");
|
||||
</script>
|
||||
|
@ -1,13 +1,13 @@
|
||||
<h3>
|
||||
<?= $this->translate('This Community-ID instance hasn\'t been installed yet') ?>
|
||||
<?php echo $this->translate('This Community-ID instance hasn\'t been installed yet') ?>
|
||||
</h3>
|
||||
<div style="margin-top:20px">
|
||||
<input type="button" id="start" value="<?= $this->translate('Proceed with installation')?>" />
|
||||
<input type="button" id="start" value="<?php echo $this->translate('Proceed with installation')?>" />
|
||||
<script type="text/javascript">
|
||||
var oButton = new YAHOO.widget.Button(
|
||||
"start",
|
||||
{
|
||||
onclick: {fn: function() {location.href="<?= $this->base ?>/install/credentials"}}
|
||||
onclick: {fn: function() {location.href="<?php echo $this->base ?>/install/credentials"}}
|
||||
}
|
||||
);
|
||||
</script>
|
||||
|
@ -1,18 +1,18 @@
|
||||
<h3>
|
||||
<?= $this->translate('Please correct the following problems before proceeding:') ?>
|
||||
<?php echo $this->translate('Please correct the following problems before proceeding:') ?>
|
||||
</h3>
|
||||
<ul>
|
||||
<? foreach ($this->errors as $error): ?>
|
||||
<li style="list-style-type:circle"><?= $error ?></li>
|
||||
<? endforeach ?>
|
||||
<?php foreach ($this->errors as $error): ?>
|
||||
<li style="list-style-type:circle"><?php echo $error ?></li>
|
||||
<?php endforeach ?>
|
||||
</ul>
|
||||
<div style="margin-top:20px">
|
||||
<input type="button" id="check" value="<?= $this->translate('Check again')?>" />
|
||||
<input type="button" id="check" value="<?php echo $this->translate('Check again')?>" />
|
||||
<script type="text/javascript">
|
||||
var oButton = new YAHOO.widget.Button(
|
||||
"check",
|
||||
{
|
||||
onclick: {fn: function() {location.href="<?= $this->base ?>/install/credentials"}}
|
||||
onclick: {fn: function() {location.href="<?php echo $this->base ?>/install/credentials"}}
|
||||
}
|
||||
);
|
||||
</script>
|
||||
|
15
modules/install/views/scripts/upgrade/index.phtml
Normal file
15
modules/install/views/scripts/upgrade/index.phtml
Normal file
@ -0,0 +1,15 @@
|
||||
<h2><?php echo $this->translate('New version detected') ?></h2>
|
||||
<div>
|
||||
<?php echo $this->translate('Enter the administrator credentials to proceed with the upgrade:') ?>
|
||||
</div>
|
||||
<div>
|
||||
<em><?php echo $this->translate('Make sure you make a copy of the database before, just in case') ?></em>
|
||||
</div>
|
||||
<form action="<?php echo $this->base ?>/install/upgrade/proceed" method="post" class="formGrid" style="margin-top:30px">
|
||||
<?php echo $this->loginForm->username ?>
|
||||
<?php echo $this->loginForm->password ?>
|
||||
<input type="submit" id="send" value="<?php echo $this->translate('Send') ?>" />
|
||||
<script type="text/javascript">
|
||||
var oButton = new YAHOO.widget.Button("send");
|
||||
</script>
|
||||
</form>
|
Reference in New Issue
Block a user