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
case 12 : // if not in comma delimited list | |
//works well with checkboxes configured to output a comma separated id list | |
if(!in_array($this->filterValue, explode(',', $value[$this->array_key]))) | |
$unset = 0; | |
break; |
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
@media (min--moz-device-pixel-ratio: 1.5), | |
(-o-min-device-pixel-ratio: 3/2), | |
(-webkit-min-device-pixel-ratio: 1.5), | |
(min-device-pixel-ratio: 1.5), | |
(min-resolution: 144dpi), | |
(min-resolution: 1.5dppx) { | |
/* Retina rules! */ | |
} |
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
@SELECT `pagetitle` AS `name`,`id` FROM `[+PREFIX+]site_content` WHERE `published` = 1 AND `deleted` = 0 AND `parent`=4 ORDER BY name ASC |
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
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] | |
RewriteRule ^(.*)$ http://%1%{REQUEST_URI} [R=301,QSA,NC,L] |
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
autosave,save,advlist,style,fullscreen,advimage,paste,advlink,media,contextmenu,table,nonbreaking,visualchars | |
undo,redo,selectall,separator,pastetext,pasteword,separator,search,replace,separator,nonbreaking,hr,charmap,separator,image,link,unlink,anchor,media,separator,cleanup,removeformat,separator,fullscreen,print,code,help | |
bold,italic,underline,strikethrough,sub,sup,separator,bullist,numlist,outdent,indent,separator,justifyleft,justifycenter,justifyright,justifyfull,separator,styleselect,formatselect,separator,styleprops |
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 | |
$replace = array(); | |
$replaceWith = array(); | |
//match links | |
preg_match_all('(href="(.*?)")',$output,$matches); | |
foreach($matches[1] as $key=>$m){ | |
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; |
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
$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
$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'); |