golden hour
/home/godaofbq/dev.hyperredbed.com/wp-content/plugins/templately/includes/Core/Importer/Utils
⬆️ Go Up
Upload
File/Folder
Size
Actions
ElementorHelper.php
7.2 KB
Del
OK
GutenbergHelper.php
12.89 KB
Del
OK
ImportHelper.php
445 B
Del
OK
Utils.php
6.98 KB
Del
OK
Edit: ImportHelper.php
<?php namespace Templately\Core\Importer\Utils; use Templately\Core\Importer\LogHelper; /** * @property $imported_data [] * @property $map_post_ids [] * @property $map_term_ids [] */ abstract class ImportHelper { use LogHelper; protected $imported_data = []; public $map_post_ids = []; public $map_term_ids = []; public function __set( $key, $value ) { if ( property_exists( $this, $key ) ) { $this->{$key} = $value; } } }
Save