* @copyright Knut Moeller * @version $Id: $ */ /** * export plugin of addressbook */ class timesheet_export_csv implements importexport_iface_export_plugin { /** * Exports records as defined in $_definition * * @param egw_record $_definition */ public function export( $_stream, importexport_definition $_definition) { $options = $_definition->plugin_options; $uitimesheet = new timesheet_ui(); $selection = array(); $query = $GLOBALS['egw']->session->appsession('index',TIMESHEET_APP); $query['num_rows'] = -1; // all $uitimesheet->get_rows($query,$selection,$readonlys,true); // true = only return the id's $options['begin_with_fieldnames'] = true; $export_object = new importexport_export_csv($_stream, (array)$options); // $options['selection'] is array of identifiers as this plugin doesn't // support other selectors atm. foreach ($selection as $identifier) { $timesheetentry = new timesheet_egw_record($identifier); $export_object->export_record($timesheetentry); unset($timesheetentry); } } /** * returns translated name of plugin * * @return string name */ public static function get_name() { return lang('Timesheet CSV export'); } /** * returns translated (user) description of plugin * * @return string descriprion */ public static function get_description() { return lang("Exports entries from your Timesheet into a CSV File. CSV means 'Comma Seperated Values'. However in the options Tab you can also choose other seperators."); } /** * returns file suffix for exported file * * @return string suffix */ public static function get_filesuffix() { return 'csv'; } /** * return html for options. * this way the plugin has all opportunities for options tab * * @return string html */ public function get_options_etpl() { return 'timesheet.export_csv_options'; } /** * returns slectors of this plugin via xajax * */ public function get_selectors_etpl() { return 'Selectors:'; } }