mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Implement export filters for addressbook
This commit is contained in:
parent
31959426ee
commit
66ef9a3273
@ -25,6 +25,12 @@ class addressbook_export_contacts_csv implements importexport_iface_export_plugi
|
|||||||
const EACH_CAT = 'each_cat'; // Every category gets its own field
|
const EACH_CAT = 'each_cat'; // Every category gets its own field
|
||||||
const EXPLODE = 'explode'; // For [custom] multi-selects, each option gets its own field
|
const EXPLODE = 'explode'; // For [custom] multi-selects, each option gets its own field
|
||||||
|
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
$this->ui= new addressbook_ui();
|
||||||
|
$this->get_selects();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Exports records as defined in $_definition
|
* Exports records as defined in $_definition
|
||||||
*
|
*
|
||||||
@ -35,7 +41,6 @@ class addressbook_export_contacts_csv implements importexport_iface_export_plugi
|
|||||||
$options = $_definition->plugin_options;
|
$options = $_definition->plugin_options;
|
||||||
$this->export_object = $export_object = new importexport_export_csv($_stream, (array)$options);
|
$this->export_object = $export_object = new importexport_export_csv($_stream, (array)$options);
|
||||||
|
|
||||||
$uicontacts = new addressbook_ui();
|
|
||||||
$selection = array();
|
$selection = array();
|
||||||
|
|
||||||
// Addressbook defines its own export imits
|
// Addressbook defines its own export imits
|
||||||
@ -56,7 +61,7 @@ class addressbook_export_contacts_csv implements importexport_iface_export_plugi
|
|||||||
$query['num_rows'] = -1; // all
|
$query['num_rows'] = -1; // all
|
||||||
$query['csv_export'] = true; // so get_rows method _can_ produce different content or not store state in the session
|
$query['csv_export'] = true; // so get_rows method _can_ produce different content or not store state in the session
|
||||||
if(!array_key_exists('filter',$query)) $query['filter'] = $GLOBALS['egw_info']['user']['account_id'];
|
if(!array_key_exists('filter',$query)) $query['filter'] = $GLOBALS['egw_info']['user']['account_id'];
|
||||||
$uicontacts->get_rows($query,$selection,$readonlys, true); // only return the ids
|
$this->ui->get_rows($query,$selection,$readonlys, true); // only return the ids
|
||||||
}
|
}
|
||||||
elseif ( $options['selection'] == 'all_contacts' ) {
|
elseif ( $options['selection'] == 'all_contacts' ) {
|
||||||
if ($GLOBALS['egw_info']['user']['preferences']['addressbook']['hide_accounts']) {
|
if ($GLOBALS['egw_info']['user']['preferences']['addressbook']['hide_accounts']) {
|
||||||
@ -64,7 +69,38 @@ class addressbook_export_contacts_csv implements importexport_iface_export_plugi
|
|||||||
}
|
}
|
||||||
$selection = ExecMethod2('addressbook.addressbook_bo.search', array(), true, '', '','',false,'AND',false,$col_filter);
|
$selection = ExecMethod2('addressbook.addressbook_bo.search', array(), true, '', '','',false,'AND',false,$col_filter);
|
||||||
//$uicontacts->get_rows($query,$selection,$readonlys,true);
|
//$uicontacts->get_rows($query,$selection,$readonlys,true);
|
||||||
} else {
|
}
|
||||||
|
elseif ($options['selection'] == 'filter')
|
||||||
|
{
|
||||||
|
$fields = importexport_helper_functions::get_filter_fields($_definition->application, $this);
|
||||||
|
$filter = $_definition->filter;
|
||||||
|
$known_fields = $this->ui->get_fields('supported');
|
||||||
|
$query = array();
|
||||||
|
|
||||||
|
// Handle ranges
|
||||||
|
foreach($filter as $field => $value)
|
||||||
|
{
|
||||||
|
if($field == 'cat_id')
|
||||||
|
{
|
||||||
|
$query['col_filter'][$field] = implode(',',$value);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if(strpos($field, '#') !== 0)
|
||||||
|
{
|
||||||
|
$field = 'contact_'.$field;
|
||||||
|
}
|
||||||
|
$query['col_filter'][$field] = $value;
|
||||||
|
if(!is_array($value) || (!$value['from'] && !$value['to'])) continue;
|
||||||
|
|
||||||
|
// Ranges are inclusive, so should be provided that way (from 2 to 10 includes 2 and 10)
|
||||||
|
if($value['from']) $query['col_filter'][] = "$field >= " . (int)$value['from'];
|
||||||
|
if($value['to']) $query['col_filter'][] = "$field <= " . (int)$value['to'];
|
||||||
|
unset($query['col_filter'][$field]);
|
||||||
|
}
|
||||||
|
$selection = ExecMethod2('addressbook.addressbook_bo.search', array(), true, '', '','',false,'AND',false,$query['col_filter']);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
$selection = explode(',',$options['selection']);
|
$selection = explode(',',$options['selection']);
|
||||||
}
|
}
|
||||||
$GLOBALS['egw_info']['flags']['currentapp'] = $old_app;
|
$GLOBALS['egw_info']['flags']['currentapp'] = $old_app;
|
||||||
@ -186,13 +222,6 @@ class addressbook_export_contacts_csv implements importexport_iface_export_plugi
|
|||||||
|
|
||||||
$export_object->set_mapping($options['mapping']);
|
$export_object->set_mapping($options['mapping']);
|
||||||
|
|
||||||
$selects = array(
|
|
||||||
'tid' => array('n' => 'Contact')
|
|
||||||
);
|
|
||||||
foreach($this->content_types as $tid => $data)
|
|
||||||
{
|
|
||||||
$selects['tid'][$tid] = $data['name'];
|
|
||||||
}
|
|
||||||
// $options['selection'] is array of identifiers as this plugin doesn't
|
// $options['selection'] is array of identifiers as this plugin doesn't
|
||||||
// support other selectors atm.
|
// support other selectors atm.
|
||||||
foreach ($selection as $_contact) {
|
foreach ($selection as $_contact) {
|
||||||
@ -211,7 +240,7 @@ class addressbook_export_contacts_csv implements importexport_iface_export_plugi
|
|||||||
// Some conversion
|
// Some conversion
|
||||||
$this->convert($contact, $options);
|
$this->convert($contact, $options);
|
||||||
if($options['convert']) {
|
if($options['convert']) {
|
||||||
importexport_export_csv::convert($contact, addressbook_egw_record::$types, 'addressbook',$selects);
|
importexport_export_csv::convert($contact, addressbook_egw_record::$types, 'addressbook',$this->selects);
|
||||||
} else {
|
} else {
|
||||||
// Implode arrays, so they don't say 'Array'
|
// Implode arrays, so they don't say 'Array'
|
||||||
foreach($contact->get_record_array() as $key => $value) {
|
foreach($contact->get_record_array() as $key => $value) {
|
||||||
@ -284,7 +313,7 @@ class addressbook_export_contacts_csv implements importexport_iface_export_plugi
|
|||||||
*/
|
*/
|
||||||
public function get_selectors_etpl() {
|
public function get_selectors_etpl() {
|
||||||
return array(
|
return array(
|
||||||
'name' => 'addressbook.export_csv_selectors',
|
'name' => 'importexport.export_csv_selectors',
|
||||||
'content' => 'use_all',
|
'content' => 'use_all',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -331,4 +360,37 @@ class addressbook_export_contacts_csv implements importexport_iface_export_plugi
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
protected function get_selects()
|
||||||
|
{
|
||||||
|
$this->selects = array(
|
||||||
|
'tid' => array('n' => 'Contact')
|
||||||
|
);
|
||||||
|
foreach($this->ui->content_types as $tid => $data)
|
||||||
|
{
|
||||||
|
$this->selects['tid'][$tid] = $data['name'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adjust automatically generated filter fields
|
||||||
|
*/
|
||||||
|
public function get_filter_fields(Array &$filters)
|
||||||
|
{
|
||||||
|
unset($filters['last_event']);
|
||||||
|
unset($filters['next_event']);
|
||||||
|
foreach($filters as $field_name => &$settings)
|
||||||
|
{
|
||||||
|
if($this->selects[$field_name]) $settings['values'] = $this->selects[$field_name];
|
||||||
|
}
|
||||||
|
$filters['owner'] = array(
|
||||||
|
'name' => 'owner',
|
||||||
|
'label' => 'addressbook',
|
||||||
|
'type' => 'select',
|
||||||
|
'rows' => 5,
|
||||||
|
'enhance' => true,
|
||||||
|
'values' => $this->ui->get_addressbooks(EGW_ACL_READ)
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user