/home/arranoyd/public_html/wp-content/plugins/brizy/content/providers/interface.php
<?php

interface Brizy_Content_Providers_Interface {

	const CONFIG_KEY_TEXT     = 'richText';
	const CONFIG_KEY_IMAGE    = 'image';
	const CONFIG_KEY_LINK     = 'link';
	const CONFIG_KEY_OEMBED   = 'oembed';
	const CONFIG_KEY_VIDEO    = 'video';
	const CONFIG_KEY_SNDCLOUD = 'sndcloud';

	/**
	 * @return mixed
	 */
	public function getGroupedPlaceholders();

	public function getAllPlaceholders();
}