# betterlinks/trunk/includes/Tools.php

BetterLinks – Link Shortener, Link Cloaking, Redirects, Affiliate Link Manager &amp; MCP, version trunk. 31 lines.

- Page: https://pluginprobe.com/plugins/betterlinks/trunk/code/includes/Tools.php
- Raw: https://pluginprobe.com/plugins/betterlinks/trunk/raw/includes/Tools.php
- Modified: 2026-05-11T12:15:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/betterlinks/trunk/code/includes/Tools.php#L10-L20`.

```php
<?php
namespace BetterLinks;
if ( ! defined( 'ABSPATH' ) ) { exit; }

/**
 * Summery - Perform Import , Export
 */
class Tools {

	/**
	 * Initialize import and export
	 */
	public function __construct() {
		$this->init_import();
		$this->init_export();
	}

	/**
	 * Export
	 */
	public function init_export() {
		new Tools\Export();
	}
	/**
	 * Import
	 */
	public function init_import() {
		new Tools\Import();
	}
}

```
