PATH:
home
/
letacommog
/
letaweb
/
admin
/
classes
/
socialEmbed
/
MediaEmbed
/
Object
<?php /** * ObjectInterface must be implemented by classes that are a specific type of media. */ interface ObjectInterface { /** * Returns the unique id of a media resource. * * @api * * @return string */ public function id(); /** * Returns the host as slugged string. * * @api * * @return string */ public function slug(); /** * Returns the name of this media host type. * * @api * * return string */ public function name(); /** * Returns the final HTML code for display. * * @api * * @return string */ public function getEmbedCode(); }
[+]
..
[-] ObjectInterface.php
[edit]
[-] MediaObject.php
[edit]