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="<?=$field_name?>_pointee_img" class="pointee_wrapper"> | |
<div class="inset"> | |
<? if($fixed_img_url != ''):?> | |
<img src="<?=$fixed_img_url?>" class="pointee_image" /> | |
<div class="pointee_map_marker pointee_<?=$color?>"></div> | |
<? elseif($display_image !=''): ?> | |
<img src="<?=$display_image?>" class="pointee_image" /> | |
<div class="pointee_map_marker pointee_<?=$color?>"></div> | |
<? else: ?> | |
<p class="pointee_get_started"><?=lang('upload_select_prompt')?></p> |
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
<!-- | |
PARENT TEMPLATE, /pages for example | |
--> | |
{exp:channel:entries limit="1" disable="member_data|pagination|categories"} | |
<!-- set the node --> | |
{exp:taxonomy:set_node tree_id="1" key="entry_id" val="{entry_id}" var_prefix="this_"} | |
<!-- stash the nav --> |
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
{exp:channel:entries limit="1"} | |
<!-- set the current node --> | |
{exp:taxonomy:set_node tree_id="1" key="entry_id" val="{entry_id}" var_prefix="this_"} | |
<!-- Le Nav --> | |
<nav> | |
{exp:taxonomy:nav auto_expand="yes"} | |
<a href="{node_url}">{node_title}</a> | |
{/exp:taxonomy:nav} |
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 | |
// hacks to ft.matrix.php to allow import of matrix data via channel_entries api | |
// which doesn't call the validate() method in the fieldtype | |
// -------------------------------------------------------------------------------- | |
// CHANGE 1 | |
// update save method which is currently: | |
/** |
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
{exp:channel:entries | |
channel="pages_about" | |
limit="1" | |
status="open" | |
disable="{global:param_disable_default}" | |
require_entry="yes"} {if no_results}{redirect="404"}{/if} | |
{gv_html_open} | |
<title>{if title_override}{title_override}{if:else}{title}{/if}</title> | |
<meta name="description" content="{if meta_description}{meta_description}{if:else} {gv_global_meta_description}{/if}" /> | |
<meta name="keywords" content="{if meta_keywords}{keywords}{if:else}{gv_global_meta_keywords}{/if}" /> |
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
[-- START CONFIGURATION --] | |
web safe= true | |
web safe delimiter=_ | |
text style= html | |
text encoding= utf8 | |
font family = helvetica | |
newline = unix | |
media folder= images/@LESSON_NAME | |
image format=png |
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
{exp:channel:entries channel="static" limit="1" sort="asc"{if segment_2} require_entry="yes"{/if}} | |
{if no_results}{redirect="404"}{/if} | |
<html> | |
<head> | |
{exp:taxonomy:set_node tree_id="1" key="entry_id" val="{entry_id}" var_prefix="this_"} | |
{styles} | |
<title>{title} {if segment_2}// {exp:taxonomy:breadcrumbs titles_only="yes" reverse="yes" include_here="no" delimiter=" :: "}{/if} | |
</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
<style type="text/css"> | |
.image {position: relative;} | |
.image span { | |
position: absolute; | |
background: red; | |
width: 15px; | |
height: 15px; | |
border-radius: 15px; | |
} | |
</style> |
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
FROM LINE 182 to 194 OF: system/expressionengine/third_party/taxonomy/mcp.taxonomy.php | |
// build our member_groups array for our multiselect options | |
foreach( $member_groups as $member_group ) | |
{ | |
// only add to the array if the member group can actuall access the taxonomy module | |
if( $this->EE->ttree->can_access_taxonomy($member_group['group_id']) ) | |
{ |
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
$this->table->set_heading( | |
array('data' => lang('id'), 'colspan' => '6') | |
); | |
$this->table->add_row( | |
array('data' => $data, | |
'colspan' => '6', | |
'style' => 'background: #fff; border-bottom-width: 10px;') | |
); |