Tools.php in BetterLinks – Link Shortener, Link Cloaking, Redirects, Affiliate Link Manager & MCP trunk, at includes/Tools.php
| 1 | <?php |
| 2 | namespace BetterLinks; |
| 3 | if ( ! defined( 'ABSPATH' ) ) { exit; } |
| 4 | |
| 5 | /** |
| 6 | * Summery - Perform Import , Export |
| 7 | */ |
| 8 | class Tools { |
| 9 | |
| 10 | /** |
| 11 | * Initialize import and export |
| 12 | */ |
| 13 | public function __construct() { |
| 14 | $this->init_import(); |
| 15 | $this->init_export(); |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * Export |
| 20 | */ |
| 21 | public function init_export() { |
| 22 | new Tools\Export(); |
| 23 | } |
| 24 | /** |
| 25 | * Import |
| 26 | */ |
| 27 | public function init_import() { |
| 28 | new Tools\Import(); |
| 29 | } |
| 30 | } |
| 31 |