added $scope to get_alias

This commit is contained in:
Roland Gruber 2004-02-23 15:59:56 +00:00
parent a91d5e85c3
commit 95fdb7b1a5
10 changed files with 14 additions and 14 deletions

View File

@ -138,7 +138,7 @@ function getAvailableModules($scope) {
$entry = substr($entry, 0, strpos($entry, '.'));
$eval = '$module = '.$entry."::get_dependencies(".$scope.");";
eval ($eval);
if ($module != -1) $return[] = getModuleAlias($entry, $scope);
if ($module != -1) $return[] = $entry;
}
return $return;
}
@ -259,13 +259,13 @@ class accountContainer {
if ($this->order[$i]==$this->order[$this->module['main']->current_page] || !$this->module[$this->order[$i]]->module_ready() ) {
// print disabled button
echo "<input name=\"form_main_".$this->order[$i]."\" type=\"submit\" value=\"";
echo $this->module[$this->order[$i]]->get_alias();
echo $this->module[$this->order[$i]]->get_alias($type);
echo "\" disabled>\n<br>";
}
else {
// print normal button
echo "<input name=\"form_main_".$this->order[$i]."\" type=\"submit\" value=\"";
echo $this->module[$this->order[$i]]->get_alias();
echo $this->module[$this->order[$i]]->get_alias($type);
echo "\">\n<br>";
}
}
@ -273,7 +273,7 @@ class accountContainer {
echo "</fieldset></td></tr>\n";
echo "</table></td>\n<td>";
echo "<td><fieldset class=\"".$this->type."edit-dark\"><legend class=\"".$this->type."edit-bright\"><b>";
echo $this->module[$this->order[$this->module['main']->current_page]]->get_alias();
echo $this->module[$this->order[$this->module['main']->current_page]]->get_alias($type);
echo "</b></legend>\n";
// display html-code from mdule
$function = '$result = $this->module[$this->order[$this->module[\'main\']->current_page]]->display_html_'.$this->module['main']->subpage.'($post);';

View File

@ -63,7 +63,7 @@ class account {
*/
var $orig;
function get_alias() {
function get_alias($scope) {
return _('account');
}

View File

@ -66,7 +66,7 @@ class inetOrgPerson {
*/
var $orig;
function get_alias() {
function get_alias($scope) {
return _('inetOrgPerson');
}

View File

@ -63,7 +63,7 @@ class main {
// name of accountContainer so we can read other classes in accuontArray
var $base;
function get_alias() {
function get_alias($scope) {
return _('main');
}
@ -207,7 +207,7 @@ class main {
if (!$_SESSION[$this->base]->module[$module]->module_complete()) {
$disabled = true;
$table[] = array ( 0 => array ( 'kind' => 'message', 'type' => 'ERROR', 'headline' => _('Check module'),
'text' => sprintf(_('Please set up all required attributes on %s page.'), $_SESSION[$this->base]->module[$module]->get_alias()) ));
'text' => sprintf(_('Please set up all required attributes on %s page.'), $_SESSION[$this->base]->module[$module]->get_alias($this->base->type)) ));
}
}
}

View File

@ -119,7 +119,7 @@ class posixGroup {
}
}
function get_alias() {
function get_alias($scope) {
return _('posixGroup');
}

View File

@ -67,7 +67,7 @@ class quota {
var $quota;
function get_alias() {
function get_alias($scope) {
return _('quota');
}

View File

@ -122,7 +122,7 @@ class sambaAccount {
}
}
function get_alias() {
function get_alias($scope) {
return _('sambaAccount');
}

View File

@ -93,7 +93,7 @@ class sambaGroupMapping {
// Array of well known rids
var $rids;
function get_alias() {
function get_alias($scope) {
return _('sambaGroupMapping');
}

View File

@ -122,7 +122,7 @@ class sambaSamAccount {
}
}
function get_alias() {
function get_alias($scope) {
return _('sambaSamAccount');
}

View File

@ -87,7 +87,7 @@ class shadowAccount {
*/
var $orig;
function get_alias() {
function get_alias($scope) {
return _('shadowAccount');
}