mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 09:09:04 +01:00
rename template regarding list interface for manage identities and accounts
This commit is contained in:
parent
451aa51beb
commit
56bada408f
@ -137,10 +137,30 @@ class mail_signatures
|
|||||||
$row['fm_defaultsignature'] = ($row['fm_defaultsignature']?'Default':'');
|
$row['fm_defaultsignature'] = ($row['fm_defaultsignature']?'Default':'');
|
||||||
}
|
}
|
||||||
array_unshift($rows,array(''=> ''));
|
array_unshift($rows,array(''=> ''));
|
||||||
//_debug_array($rows);
|
|
||||||
return $rows;
|
return $rows;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* edit signature
|
||||||
|
*
|
||||||
|
* @param array $content=null
|
||||||
|
* @param string $msg=null
|
||||||
|
*/
|
||||||
|
function edit(array $content=null,$msg=null)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* delete signature
|
||||||
|
*
|
||||||
|
* @param array _identityID
|
||||||
|
* @return xajax response
|
||||||
|
*/
|
||||||
|
function ajax_deleteSignature($_identityID)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
function getDefaultSignature() {
|
function getDefaultSignature() {
|
||||||
$db = clone($GLOBALS['egw']->db);
|
$db = clone($GLOBALS['egw']->db);
|
||||||
$db->set_app('felamimail');
|
$db->set_app('felamimail');
|
||||||
|
@ -56,7 +56,7 @@ class mail_uipreferences
|
|||||||
function index(array $content=null,$msg=null)
|
function index(array $content=null,$msg=null)
|
||||||
{
|
{
|
||||||
//Instantiate an etemplate_new object
|
//Instantiate an etemplate_new object
|
||||||
$tmpl = new etemplate_new('mail.accounts.index');
|
$tmpl = new etemplate_new('mail.profiles.index');
|
||||||
if (!is_array($content))
|
if (!is_array($content))
|
||||||
{
|
{
|
||||||
$content['acc']= $this->get_rows($rows,$readonlys);
|
$content['acc']= $this->get_rows($rows,$readonlys);
|
||||||
@ -99,7 +99,7 @@ class mail_uipreferences
|
|||||||
'caption' => lang('Open'),
|
'caption' => lang('Open'),
|
||||||
'icon' => 'view',
|
'icon' => 'view',
|
||||||
'group' => ++$group,
|
'group' => ++$group,
|
||||||
'onExecute' => 'javaScript:app.mail.account_open',
|
'onExecute' => 'javaScript:app.mail.profile_open',
|
||||||
'allowOnMultiple' => false,
|
'allowOnMultiple' => false,
|
||||||
'default' => true,
|
'default' => true,
|
||||||
),
|
),
|
||||||
@ -107,7 +107,7 @@ class mail_uipreferences
|
|||||||
'caption' => lang('delete'),
|
'caption' => lang('delete'),
|
||||||
'icon' => 'delete',
|
'icon' => 'delete',
|
||||||
'group' => ++$group,
|
'group' => ++$group,
|
||||||
'onExecute' => 'javaScript:app.mail.account_delete',
|
'onExecute' => 'javaScript:app.mail.profile_delete',
|
||||||
'allowOnMultiple' => false,
|
'allowOnMultiple' => false,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
@ -154,8 +154,28 @@ class mail_uipreferences
|
|||||||
$row['default'] = ($row['default']?'Default':'');
|
$row['default'] = ($row['default']?'Default':'');
|
||||||
}
|
}
|
||||||
array_unshift($rows,array(''=> ''));
|
array_unshift($rows,array(''=> ''));
|
||||||
//_debug_array($rows);
|
|
||||||
return $rows;
|
return $rows;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* edit account/identity
|
||||||
|
*
|
||||||
|
* @param array $content=null
|
||||||
|
* @param string $msg=null
|
||||||
|
*/
|
||||||
|
function edit(array $content=null,$msg=null)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* delete personalMailProfile
|
||||||
|
*
|
||||||
|
* @param array account/identity list of UID's
|
||||||
|
* @return xajax response
|
||||||
|
*/
|
||||||
|
function ajax_deleteMailProfile($_profile)
|
||||||
|
{
|
||||||
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
@ -1813,7 +1813,21 @@ app.mail = AppJS.extend(
|
|||||||
{
|
{
|
||||||
var id = _widget[0].id.replace(/row_/,'');
|
var id = _widget[0].id.replace(/row_/,'');
|
||||||
var siggrid = this.et2.getArrayMgr("content").getEntry('sig')[id];
|
var siggrid = this.et2.getArrayMgr("content").getEntry('sig')[id];
|
||||||
console.log(_egw, _widget);
|
console.log(_egw, _widget,siggrid,id);
|
||||||
|
},
|
||||||
|
|
||||||
|
profile_open: function(_egw, _widget)
|
||||||
|
{
|
||||||
|
var id = _widget[0].id.replace(/row_/,'');
|
||||||
|
var accgrid = this.et2.getArrayMgr("content").getEntry('acc')[id];
|
||||||
|
console.log(_egw, _widget,accgrid,id);
|
||||||
|
},
|
||||||
|
|
||||||
|
profile_delete: function(_egw, _widget)
|
||||||
|
{
|
||||||
|
var id = _widget[0].id.replace(/row_/,'');
|
||||||
|
var accgrid = this.et2.getArrayMgr("content").getEntry('acc')[id];
|
||||||
|
console.log(_egw, _widget,accgrid,id);
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!-- $Id$ -->
|
<!-- $Id$ -->
|
||||||
<overlay>
|
<overlay>
|
||||||
<template id="mail.accounts.index.rows" template="" lang="" group="0" version="1.9.001">
|
<template id="mail.profiles.index.rows" template="" lang="" group="0" version="1.9.001">
|
||||||
<grid width="100%" id="acc" class="egwGridView_grid">
|
<grid width="100%" id="acc" class="egwGridView_grid">
|
||||||
<columns>
|
<columns>
|
||||||
<column/>
|
<column/>
|
||||||
@ -22,7 +22,7 @@
|
|||||||
</rows>
|
</rows>
|
||||||
</grid>
|
</grid>
|
||||||
</template>
|
</template>
|
||||||
<template id="mail.accounts.index" template="" lang="" group="0" version="1.9.001">
|
<template id="mail.profiles.index" template="" lang="" group="0" version="1.9.001">
|
||||||
<description id="msg" no_lang="1" class="message" span="all"/>
|
<description id="msg" no_lang="1" class="message" span="all"/>
|
||||||
<grid width="100%">
|
<grid width="100%">
|
||||||
<columns>
|
<columns>
|
Loading…
Reference in New Issue
Block a user