ASong2U_Web/wp-content/plugins/jw-player-plugin-for-wordpress/framework/EmbedConfigInterface.php

23 lines
313 B
PHP
Raw Permalink Normal View History

<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Cameron
*/
interface EmbedConfigInterface {
public function getConfig();
public function generateDiv();
public function getId();
public function generateEmbedScript();
}
?>