本文整理汇总了PHP中FabrikWorker::getAudioMimeType方法的典型用法代码示例。如果您正苦于以下问题:PHP FabrikWorker::getAudioMimeType方法的具体用法?PHP FabrikWorker::getAudioMimeType怎么用?PHP FabrikWorker::getAudioMimeType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FabrikWorker
的用法示例。
在下文中一共展示了FabrikWorker::getAudioMimeType方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: display
//.........这里部分代码省略.........
$view = $model->canEdit() ? 'form' : 'details';
//list of tags to look for in the row data
//- if they are there don't put them in the desc but put them in as a seperate item param
$rsstags = array(
'<georss:point>' => 'xmlns:georss="http://www.georss.org/georss"'
);
foreach ($rows as $group)
{
foreach ($group as $row)
{
// strip html from feed item title
//$title = html_entity_decode($this->escape( $row->$titleEl));
//get the content
$str2 = '';
$str = '<table style="margin-top:10px;padding-top:10px;">';
//used for content not in dl
//ok for feed gator you cant have the same item title so we'll take the first value from the table (asume its the pk and use that to append to the item title)'
$title = '';
$item = new JFabrikFeedItem();
$enclosures = array();
foreach ($aTableHeadings as $heading=>$dbcolname) {
if ($dbcolname['enclosure']) {
// $$$ hugh - diddling aorund trying to add enclosures
$colName = $dbcolname['colName'] . '_raw';
$enclosure_url = $row->$colName;
if (!empty($enclosure_url)) {
$enclosure_file = COM_FABRIK_BASE.$enclosure_url;
$enclosure_url = COM_FABRIK_LIVESITE . str_replace('\\','/',$enclosure_url);
if (file_exists($enclosure_file) and !is_dir($enclosure_file)) {
$enclosure_type = '';
if ($enclosure_type = FabrikWorker::getAudioMimeType($enclosure_file)) {
$enclosure_size = filesize($enclosure_file);
$enclosures[] = array(
'url' => $enclosure_url,
'length' => $enclosure_size,
'type' => $enclosure_type
);
// no need to insert the URL in the description, as feed readers should
// automagically show 'media' when they see an 'enclosure', so just move on ..
continue;
}
}
}
}
if ($title == '') {
//set a default title
$title = $row->$dbcolname['colName'];
}
$rsscontent = $row->$dbcolname['colName'];
$found = false;
foreach ($rsstags as $rsstag =>$namespace) {
if (strstr($rsscontent, $rsstag)) {
$found = true;
$rsstag = substr($rsstag, 1, strlen($rsstag)-2);
if (!strstr($document->_namespace, $namespace)) {
$document->_itemTags[] = $rsstag;
$document->_namespace .= $namespace . " ";
}
break;
}
}