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
$words = ''; | |
$q = $sanitizer->selectorValue($input->post->q); | |
$words = explode(' ', $q); | |
foreach($words as $word) { | |
$word = $sanitizer->selectorValue($word); | |
if($word) $selectorEmergencyContacts .= "title|label_$lang*=$word, "; | |
} | |
... |
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
$parent = '/processwire/access/users/' . $user->name; | |
foreach($pages->get("/tools/categories/")->children("sort=title") as $tag) { | |
echo "<h2>$tag->title</h2>"; | |
foreach($pages->find("parent={$parent}, course_categories=$tag") as $p){ | |
echo "<a href='{$p->course_documents->url}'>{$p->course_documents->name}</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
<?php | |
class UserNameLabel extends WireData implements Module{ | |
public static function getModuleInfo() { | |
return array( | |
'title' => __('UserNameLabel', __FILE__), // Module Title | |
'version' => 100, | |
'summary' => __('Overwrite User Name Label', __FILE__), // Module Summary | |
'autoload' => true |
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 | |
include($config->paths->root . "site/.libs/countries/countryList.class.php"); | |
$ct = new CountryList(); | |
$countries = $ct->getCountryList($lang); | |
$show_form = true; | |
$note = '<h3>Danke!</h3>'; | |
$errors = ''; |
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
#page>(#header>ul#nav>li*4>a>span.cf)+(#page>(h1>span)+p*2)+#footer |
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
// replace youtube urls | |
if(strpos($page->body, '<p>http://www.youtube.com') !== false) { | |
$replacement = '<iframe width="444" height="280" src="http://www.youtube.com/embed/$1?$2" frameborder="0" allowfullscreen></iframe>'; | |
$page->body = preg_replace('#<p>\s*http://www.youtube.com/watch\?v=([^\s&<]+)([\&\;+?].+).*?</p>#iu', $replacement, $page->body); | |
} |
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
$(document).bind("mobileinit", function(){ | |
$.extend( $.mobile , { | |
autoInitializePage: false, | |
ajaxEnabled: false, | |
linkBindingEnabled: false, | |
pushStateEnabled: false, | |
hashListeningEnabled: false | |
}); | |
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 | |
/** | |
* ProcessWire Module Template | |
* | |
* Demonstrates the Module interface and how to add hooks. | |
* | |
* ProcessWire 2.x | |
* Copyright (C) 2010 by Ryan Cramer | |
* Licensed under GNU/GPL v2, see LICENSE.TXT |
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 | |
/* | |
* | |
* | |
* | |
*/ | |
class ProcessDashboard extends Process { |
OlderNewer