# woo-additional-terms/1.7.3/src/Helper/Links.php

Additional Terms Lite for WooCommerce, version 1.7.3. 53 lines.

- Page: https://pluginprobe.com/plugins/woo-additional-terms/1.7.3/code/src/Helper/Links.php
- Raw: https://pluginprobe.com/plugins/woo-additional-terms/1.7.3/raw/src/Helper/Links.php
- Modified: 2026-07-25T12:36:52+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/woo-additional-terms/1.7.3/code/src/Helper/Links.php#L10-L20`.

```php
<?php
/**
 * Helper links used throughout the plugin.
 *
 * @since 1.6.0
 *
 * @package woo-additional-terms
 */

namespace Woo_Additional_Terms\Helper;

/**
 * Helper links.
 */
abstract class Links {

	/**
	 * Get the url for the documentation with the given path.
	 *
	 * @since 1.6.0
	 *
	 * @param string $path The path to the documentation page.
	 * @param array  $args The query args.
	 *
	 * @return string
	 */
	public static function docs_uri( $path = '', $args = array() ) {

		return path_join(
			'https://mypreview.one/docs/woo-additional-terms',
			add_query_arg( $args, $path )
		);
	}

	/**
	 * Get the url for the pro version with the given path.
	 *
	 * @since 1.6.0
	 *
	 * @param string $path The path to the pro version page.
	 * @param array  $args The query args.
	 *
	 * @return string
	 */
	public static function pro_uri( $path = '', $args = array() ) {

		return path_join(
			'https://mypreview.one/additional-terms-pro-for-woocommerce/',
			add_query_arg( $args, $path )
		);
	}
}

```
