?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/caldera-forms/cf2/Fields/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/caldera-forms/cf2

?? Viewing: RegisterFieldsContract.php

<?php


namespace calderawp\calderaforms\cf2\Fields;


interface RegisterFieldsContract
{


	/**
	 * Get path to main plugin file
	 *
	 * @since 1.8.9
	 *
	 * @return string
	 */
	public function getCoreDirPath();

	/**
	 * Add cf2 field types to an array of field types
	 *
	 * @since 1.8.0
	 *
	 * Designed to be hooked to "caldera_forms_get_field_types"
	 *
	 * @param $fields
	 *
	 * @return array
	 */
	public function filter($fields);


}


??

??