CSV Export v1.01 Released (more access settings)
7 posts by 4 authors in: Forums > CMS Builder: Plugins & Add-ons
Last Post: September 7, 2012 (RSS)
By Dave - October 12, 2009
- You can now limit access to admin users only
- You can now limit access to specific sections only
This is useful if you only want admins to be able to export CSV files, or if you want that feature for some sections but not all.
See the readme for more details or make these changes in the top of of the csvExport.php file.
For a full description of this plugin and to download the latest version:
http://www.interactivetools.com/appstore/detail.php?CSV-Export-1005
Please feel free to post your feedback and questions! We're always eager to get your feature requests and bug reports. Post in the forum or email me at dave@interactivetools.com.
Thanks!
interactivetools.com
Re: [Dave] CSV Export v1.01 Released (more access settings)
By jtedescojam - March 3, 2010
Only problem is, I need to customize the data that exports... I don't wan the 'num','createdDate','creatByUser','etc'... can you assist me with editing the information exported?
I'd also love it if the csvExported only what we've searched.. i.e. if there's 100 rows, to search for the information they want, and only export that.
Please let me know. thanks.
Creative Director
JAM Graphics
Re: [jtedescojam] CSV Export v1.01 Released (more access settings)
By Dave - March 4, 2010
Sure, you can find those features in the (just released) 1.02 version here:
http://www.interactivetools.com/add-ons/detail.php?CSV-Export-1005
Hope that helps!
interactivetools.com
Re: [Dave] CSV Export v1.01 Released (more access settings)
By jtedescojam - March 4, 2010
Creative Director
JAM Graphics
Re: [Dave] CSV Export v1.01 Released (more access settings)
By Mikey - September 4, 2012
When I add custom include fields in my csvExport Version: 1.04 / CMSB Version 2.15 and activate my plugin it stops working. When I remove the customization to include all fields it works again.
So the list below doesn't work:
$GLOBALS['CSVEXPORT_INCLUDE'] = array('num','createdDate','updatedDate','username','diamond','fullname','title','company_name','email','address','address2','city','state','country','zip_code','phone','guest_at_lodge','friday_activity','i_need_golf_clubs','i_am_right_or_left_handed','i_need_a_tennis_racket','attending_the_following_events','attending_luncheon','attending_dinner','dietary_requests','gift_policy'); // List of tables to include, leave blank for all. Example: ('news','jobs','etc')
But this does:
$GLOBALS['CSVEXPORT_INCLUDE'] = array(); // List of tables to include, leave blank for all. Example: ('news','jobs','etc')
Any suggestions on how I can get this working?
Thanks, Zick
Re: [zick] CSV Export v1.01 Released (more access settings)
By Jason - September 4, 2012
The $GLOBALS['CSVEXPORT_INCLUDE'] array is looking for a list of section names, not field names, which is why the export isn't working. If you only want to output a certain subset of the fields, you can add all the fields that you DON'T want to the $GLOBALS['CSVEXPORT_SKIP_FIELDS'] array.
Hope this helps
Jason Sauchuk - Project Manager
interactivetools.com
Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/
Re: [Jason] CSV Export v1.01 Released (more access settings)
By Mikey - September 7, 2012
That got me sorted out and the csv exports are working great.