/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/trx_utils/api/give
Edit: /var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/trx_utils/api/give/give.php (4911B)
' . esc_html__('Give', 'trx_utils');
return $not_installed;
}
}
// Set plugin's specific importer options
if ( !function_exists( 'trx_utils_give_importer_set_options' ) ) {
if (is_admin()) add_filter( 'trx_utils_filter_importer_options', 'trx_utils_give_importer_set_options' );
function trx_utils_give_importer_set_options($options=array()) {
if ( trx_utils_exists_give() && in_array('give', $options['required_plugins']) ) {
$options['additional_options'][] = 'give_%';
if (is_array($options['files']) && count($options['files']) > 0) {
foreach ($options['files'] as $k => $v) {
$options['files'][$k]['file_with_give'] = str_replace('name.ext', 'give.txt', $v['file_with_']);
}
}
}
return $options;
}
}
// Add checkbox to the one-click importer
if ( !function_exists( 'trx_utils_give_importer_show_params' ) ) {
if (is_admin()) add_action( 'trx_utils_action_importer_params', 'trx_utils_give_importer_show_params', 10, 1 );
function trx_utils_give_importer_show_params($importer) {
if ( trx_utils_exists_give() && in_array('give', $importer->options['required_plugins']) ) {
$importer->show_importer_params(array(
'slug' => 'give',
'title' => esc_html__('Import Give', 'trx_utils'),
'part' => 1
));
}
}
}
// Import posts
if ( !function_exists( 'trx_utils_give_importer_import' ) ) {
if (is_admin()) add_action( 'trx_utils_action_importer_import', 'trx_utils_give_importer_import', 10, 2 );
function trx_utils_give_importer_import($importer, $action) {
if ( trx_utils_exists_give() && in_array('give', $importer->options['required_plugins']) ) {
if ( $action == 'import_give' ) {
$importer->response['start_from_id'] = 0;
$importer->import_dump('give', esc_html__('Give meta', 'trx_utils'));
}
}
}
}
// Check if the row will be imported
if ( !function_exists( 'trx_utils_give_importer_check_row' ) ) {
if (is_admin()) add_filter('trx_utils_filter_importer_import_row', 'trx_utils_give_importer_check_row', 9, 4);
function trx_utils_give_importer_check_row($flag, $table, $row, $list) {
if ($flag || strpos($list, 'give')===false) return $flag;
if ( trx_utils_exists_give() ) {
if ($table == 'posts')
$flag = in_array($row['post_type'], array('give_forms', 'give_payment'));
}
return $flag;
}
}
// Display import progress
if ( !function_exists( 'trx_utils_give_importer_import_fields' ) ) {
if (is_admin()) add_action( 'trx_utils_action_importer_import_fields', 'trx_utils_give_importer_import_fields', 10, 1 );
function trx_utils_give_importer_import_fields($importer) {
if ( trx_utils_exists_give() && in_array('give', $importer->options['required_plugins']) ) {
$importer->show_importer_fields(array(
'slug'=>'give',
'title' => esc_html__('Give meta', 'trx_utils')
)
);
}
}
}
// Export posts
if ( !function_exists( 'trx_utils_give_importer_export' ) ) {
if (is_admin()) add_action( 'trx_utils_action_importer_export', 'trx_utils_give_importer_export', 10, 1 );
function trx_utils_give_importer_export($importer) {
if ( trx_utils_exists_give() && in_array('give', $importer->options['required_plugins']) ) {
$stop =1;
trx_utils_fpc(TRX_UTILS_PLUGIN_DIR . 'importer/export/give.txt', serialize( array(
"give_donors" => $importer->export_dump("give_donors"),
"give_formmeta" => $importer->export_dump("give_formmeta"),
"give_logmeta" => $importer->export_dump("give_logmeta"),
"give_logs" => $importer->export_dump("give_logs"),
"give_paymentmeta" => $importer->export_dump("give_paymentmeta")
) )
);
}
}
}
// Display exported data in the fields
if ( !function_exists( 'trx_utils_give_importer_export_fields' ) ) {
if (is_admin()) add_action( 'trx_utils_action_importer_export_fields', 'trx_utils_give_importer_export_fields', 10, 1 );
function trx_utils_give_importer_export_fields($importer) {
if ( trx_utils_exists_give() && in_array('give', $importer->options['required_plugins']) ) {
$importer->show_exporter_fields(array(
'slug' => 'give',
'title' => esc_html__('Give', 'trx_utils')
)
);
}
}
}
?>