This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Force load the module on the right (optional) */ | |
#modSocialConnectCompact .socialConnectLeft { right: 0; left: auto; } | |
#modSocialConnectCompact .socialConnectLeft:after, #modSocialConnectCompact .socialConnectLeft:before { right: 50%; left: auto; } | |
/* responsive styling */ | |
@media screen and (max-width: 600px) { | |
#modSocialConnectCompact .socialConnectSignInBlockContainer { max-width: 100%; } | |
#modSocialConnectCompact .socialConnectSignInBlock, #modSocialConnectCompact .socialConnectServicesBlock { float: none; clear: both; width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } | |
#modSocialConnectCompact .socialConnectLink { float: left; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if(!isset($fpssTemplateIncluded)){ | |
header("Content-type: text/css; charset: utf-8"); | |
$width = (int) $_GET['width']; | |
$height = (int) $_GET['height']; | |
$sidebarWidth = (int) $_GET['sidebarWidth']; | |
$thumbnailViewportWidth = (int) $_GET['thumbnailViewportWidth']; | |
$thumbnailViewportHeight = (int) $_GET['thumbnailViewportHeight']; | |
$timer = (bool) $_GET['timer']; | |
$mid = (int) $_GET['mid']; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if(!isset($fpssTemplateIncluded)){ | |
header("Content-type: text/css; charset: utf-8"); | |
$width = (int) $_GET['width']; | |
$height = (int) $_GET['height']; | |
$sidebarWidth = (int) $_GET['sidebarWidth']; | |
$thumbnailViewportWidth = (int) $_GET['thumbnailViewportWidth']; | |
$thumbnailViewportHeight = (int) $_GET['thumbnailViewportHeight']; | |
$timer = (bool) $_GET['timer']; | |
$mid = (int) $_GET['mid']; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @version 3.0.x | |
* @package Simple Image Gallery Pro | |
* @author JoomlaWorks - http://www.joomlaworks.net | |
* @copyright Copyright (c) 2006 - 2014 JoomlaWorks Ltd. All rights reserved. | |
* @license http://www.joomlaworks.net/license | |
*/ | |
/* --- Generic Styling --- */ | |
a:active,a:focus { outline:0; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$safe = array("", ""); | |
$nonsafe = array("'", "\""); | |
$custometa = $this->item->extraFields->NAME->value; | |
$safemeta = str_replace( $nonsafe, $safe, $custometa); | |
echo $safemeta; ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Option 1 - content is already cleaned up. | |
// if AAA is set use it, else use BBB | |
$metacontent = ( isset($this->item->extraFields->AAA->value) && $this->item->extraFields->AAA->value != '' ) ? $this->item->extraFields->AAA->value : $this->item->extraFields->BBB->value; | |
$doc->addCustomTag('<meta name="anything" content="'.$metacontent.'" />'); | |
?> | |
<?php // option two the content needs cleaning | |
// Clean the content prior to the assignment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @version 2.6.x | |
* @package K2 | |
* @author JoomlaWorks http://www.joomlaworks.net | |
* @copyright Copyright (c) 2006 - 2014 JoomlaWorks Ltd. All rights reserved. | |
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html | |
*/ | |
// no direct access |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if($this->item->params->get('itemExtraFields') && count($this->item->extra_fields)): ?> | |
<!-- Item extra fields --> | |
<div class="itemExtraFields"> | |
<?php /*<h3><?php echo JText::_('K2_ADDITIONAL_INFO'); ?></h3>*/ ?> | |
<ul> | |
<?php foreach ($this->item->extra_fields as $key=>$extraField): ?> | |
<?php if($extraField->value != ''): ?> | |
<li class="<?php echo ($key%2) ? "odd" : "even"; ?> type<?php echo ucfirst($extraField->type); ?> group<?php echo $extraField->group; ?>"> | |
<?php // Check if it is a social link | |
$ealias = $extraField->alias; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$fields = json_decode($item->extra_fields); | |
$item->title = $this->escape($item->title); | |
if ($fields[0]->value && $fields[0]->value !== '') | |
{ | |
$item->title = html_entity_decode($item->title.' - '.$fields[0]->value); | |
} | |
else | |
{ | |
$item->title = html_entity_decode($item->title); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="jquery_jplayer_1" class="jp-jplayer"></div> | |
<div id="jp_container_1" class="jp-audio-stream" role="application" aria-label="media player"> | |
<div class="jp-type-single"> | |
<div class="jp-gui jp-interface"> | |
<ul class="jp-controls"> | |
<li> | |
<a href="javascript:;" style="display:block;" class="jp-play" title="Play"><i class="icon-play"></i><span>Listen Live</span></a> | |
<a href="javascript:;" style="display:none;" class="jp-pause" title="Pause"><i class="icon-pause"></i><span>Listen Live</span></a> | |
</li> | |
<li> |
OlderNewer