This file contains 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( ! function_exists('pPrint') ) { | |
function pPrint($arr, $return = false){ | |
$output = '<pre>'.print_r($arr, TRUE).'</pre>'; | |
if ($return) | |
return $output; | |
else | |
echo $output; | |
} | |
} |
This file contains 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
$modx->context->key; |
This file contains 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 | |
//Get TV in REVO | |
$outlinkTV = $modx->getObject('modTemplateVar', array('name' => 'outlink')); | |
$outlink = $outlinkTV->renderOutput($docId); | |
?> |
This file contains 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
//Get TV in evo | |
$tvList = array('top-nav'); | |
$tv = $modx->getTemplateVarOutput($tvList, $id); | |
$topNav = $tv['top-nav']; |
This file contains 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
git remote add upstream git://github.com/splittingred/Gallery.git | |
git fetch upstream | |
git merge upstream/develop |
This file contains 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
$elements = $modx->db->getValue($modx->db->select("elements", $modx->getFullTableName('site_tmplvars'), "id=" . $tvId)); | |
$aElements = explode('||', $elements); | |
foreach($aElements as $e){ | |
$ee = explode('==', $e); | |
$output.='<a href="#" id="category-'.$ee[1].'">'.$ee[0].'</a>'; | |
} |
This file contains 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
$tv = $modx->getObject('modTemplateVar',array('name'=>'MyTv')); | |
// or | |
//$tv = $modx->getObject('modTemplateVar',$id); // ID of the TV | |
$optionValues = $tv->get('elements'); | |
$defaultValue = $tv->get('default_text'); |
This file contains 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
$modx->sendRedirect($modx->makeUrl($modx->resource->get('parent'), '', '', 'full')); |
This file contains 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
<!-- #declare:separator <hr> --> | |
<!-- login form section--> | |
<form method="post" name="loginfrm" action="[+action+]" id="LoginForm"> | |
<input type="hidden" value="[+rememberme+]" name="rememberme"> | |
<div class="row"> | |
<label for="username">User:</label> | |
<input type="text" name="username" id="username" tabindex="1" onkeypress="return webLoginEnter(document.loginfrm.password);" value="[+username+]" /> | |
</div> | |
<div class="row"> | |
<label for="username">Password:</label> |
This file contains 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
#LoginForm{ | |
} | |
#LoginForm div.row { | |
overflow: hidden; | |
padding-bottom: 10px; | |
} | |
#LoginForm div.row label{ | |
display: block; | |
width: 100px; |
OlderNewer