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
#!/bin/bash | |
DRUPALPATH=$1 | |
shift | |
if [ "$DRUPALPATH" == "" ] | |
then | |
echo "Usage: $0 drupal-path drush-command with-args?" | |
exit 1 | |
fi |
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
$schema = array( | |
'/rep-lookup' => array( | |
'dispatch' => 'rep_lookup.search' | |
) | |
); | |
return $schema; |
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
$view = new view(); | |
$view->name = 'bundles_usage'; | |
$view->description = ''; | |
$view->tag = 'default'; | |
$view->base_table = 'paragraphs_item'; | |
$view->human_name = 'Bundles usage'; | |
$view->core = 7; | |
$view->api_version = '3.0'; | |
$view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */ |
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 class="searchWrapper"> | |
<div class="searchContainer"> | |
<?php print $search_box; ?> | |
</div> | |
</div> |
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
https://pokevision.com/#/@40.58047058555029,-75.58394193649292 | |
Chapmans Rd near Blue Barn -- https://pokevision.com/#/@40.60922852398531,-75.58470368385315 | |
tentacool - https://pokevision.com/#/@40.60656913748868,-75.58687090873718 | |
vulpix / drowzee - https://pokevision.com/#/@40.583827673731975,-75.59106588363647 | |
goldduck - https://pokevision.com/#/@40.594455983617884,-75.50577163696289 |
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
// Run this in your javascript console | |
App.home.TIMER_ERROR = App.home.TIMER_JOB = App.home.TIMER_SCAN_DELAY = App.home.TIMER_SCAN_ERROR = App.home.TIMER_TIMER_UPDATE = 1000; |
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
.form-item { | |
@extend .form-group; | |
select, | |
textarea, | |
input[type="text"], | |
input[type="password"], | |
input[type="datetime"], | |
input[type="datetime-local"], | |
input[type="date"], |
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 | |
// Get the Role ID we want to add all permissions to | |
$rid = user_role_load_by_name('Super Administrator')->rid; | |
// Get a listing of all of the permissions | |
$perms = array_keys(user_permission_get_modules()); | |
// Grant permissions for the role | |
user_role_grant_permissions($rid, $perms); |
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 | |
/** | |
* Implements hook_install(). | |
*/ | |
function sis_site_install() { | |
// Do some things on install, like setting the module weight. | |
// Setup the Adminimal theme | |
$themes = list_themes(); |