Skip to content

Instantly share code, notes, and snippets.

@Cipa
Cipa / phx:FullUrls.php
Created November 2, 2011 14:36
Full urls custom modfier for PHx
<?php
$replace = array();
$replaceWith = array();
//match links
preg_match_all('(href="(.*?)")',$output,$matches);
foreach($matches[1] as $key=>$m){
@Cipa
Cipa / custom modx evolution tinymce config
Created February 29, 2012 19:53
custom modx evolution tinymce config
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
@Cipa
Cipa / remove www
Last active October 2, 2015 18:28
remove www
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1%{REQUEST_URI} [R=301,QSA,NC,L]
@Cipa
Cipa / gist:3784058
Created September 25, 2012 19:54
Dropdown TV @select binding
@SELECT `pagetitle` AS `name`,`id` FROM `[+PREFIX+]site_content` WHERE `published` = 1 AND `deleted` = 0 AND `parent`=4 ORDER BY name ASC
@Cipa
Cipa / gist:4176156
Created November 30, 2012 14:39 — forked from madrobby/gist:4161897
Retina screen media query
@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! */
}
@Cipa
Cipa / gist:5267977
Created March 29, 2013 00:46
ditto/list filter.class.inc.php a new filter
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;
@Cipa
Cipa / force pdf download
Created June 25, 2013 12:51
force pdf download
<FilesMatch "\.(?i:pdf)$">
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>
##you can also use html5 download attribute
##<a href="/files/adlafjlxjewfasd89asd8f.pdf" download="expenses.pdf">Download Your Expense Report</a>
##<a href="expenses.pdf" download>Download Your Expense Report</a>
@Cipa
Cipa / gist:db303f3771f782c24f2c
Created July 8, 2014 13:18
add an empty select option to a TV
@SELECT '-- Select --' as pagetitle , '' AS id UNION ALL SELECT `pagetitle`, `id` FROM `[+PREFIX+]site_content` WHERE `template` IN (8, 12, 16, 17) AND `deleted` = 0 and `published` = 1 ORDER BY pagetitle ASC
@Cipa
Cipa / gist:97a8630289afbc3ce623
Created January 31, 2015 18:30
enable gzip i htaccess if gzip and deflate are installed
#compress all text & html:
AddOutputFilterByType DEFLATE text/html text/plain text/xml
<Files *.html>
SetOutputFilter DEFLATE
</Files>
@Cipa
Cipa / gist:62e40f9ac95d65ddcadd
Created February 17, 2015 21:45
test atom search replace
var industry=
[{"id":"ABIFA", "name":"Accounting, Banking, Insurance & Finance" , "occupation":[
{"id":"ACTNT","name":"Accountant"}
,
{"id":"ACTUR","name":"Actuary"}
,
{"id":"AUDIT","name":"Auditor"}
,