1 <?php
2 /**
3 * @package Joomla.Platform
4 * @subpackage Association
5 *
6 * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
7 * @license GNU General Public License version 2 or later; see LICENSE
8 */
9
10 defined('JPATH_PLATFORM') or die;
11
12 /**
13 * Association Extension Interface for the helper classes
14 *
15 * @since 3.7.0
16 */
17 interface JAssociationExtensionInterface
18 {
19 /**
20 * Checks if the extension supports associations
21 *
22 * @return boolean Supports the extension associations
23 *
24 * @since 3.7.0
25 */
26 public function hasAssociationsSupport();
27 }
28