<?php /** * iZAP izap_videos * * @package Elgg videotizer, by iZAP Web Solutions. * @license GNU Public License version 3 * @Contact iZAP Team "<*****@*****.**>" * @Founder Tarun Jangra "<*****@*****.**>" * @link http://www.izap.in/ * */ $sites = izapGetSupportingVideoFormats_izap_videos(); ?> <h3><?php echo elgg_echo('izap_videos:form:izapSupportedFormats') . ' (' . count($sites) . ')' . ' and yet to be discovered....'; ?> </h3> <ul> <?php foreach ($sites as $site) { ?> <li> <b><?php echo $site; ?> </b> </li> <?php } ?>
/** * returns the supported video types * @return text */ function izapGetSupportedVideoFormats_izap_API() { return implode(', ', izapGetSupportingVideoFormats_izap_videos()); }