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
| RequestFormatRouteFilter.php:19, Drupal\Core\Routing\RequestFormatRouteFilter->filter() | |
| Router.php:283, Drupal\Core\Routing\Router->applyRouteFilters() | |
| Router.php:127, Drupal\Core\Routing\Router->matchRequest() | |
| AccessAwareRouter.php:90, Drupal\Core\Routing\AccessAwareRouter->matchRequest() | |
| PathBasedBreadcrumbBuilder.php:225, Drupal\system\PathBasedBreadcrumbBuilder->getRequestForPath() | |
| PathBasedBreadcrumbBuilder.php:169, Drupal\system\PathBasedBreadcrumbBuilder->build() | |
| BreadcrumbManager.php:83, Drupal\Core\Breadcrumb\BreadcrumbManager->build() | |
| SystemBreadcrumbBlock.php:72, Drupal\system\Plugin\Block\SystemBreadcrumbBlock->build() | |
| BlockViewBuilder.php:203, Drupal\block\BlockViewBuilder::preRender() | |
| Renderer.php:378, call_user_func:{/var/www/example/docroot/core/lib/Drupal/Core/Render/Renderer.php:378}() |
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 | |
| use Drupal\Core\Cache\CacheableResponseInterface; | |
| use Drupal\Core\Config\ConfigFactoryInterface; | |
| use Drupal\Core\PageCache\RequestPolicyInterface; | |
| use Drupal\Core\PageCache\ResponsePolicyInterface; | |
| use Symfony\Component\HttpKernel\Event\FilterResponseEvent; | |
| use Symfony\Component\HttpKernel\KernelEvents; | |
| use Symfony\Component\EventDispatcher\EventSubscriberInterface; |
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 | |
| function view_cache_clear($view_name, $display_id, $args = NULL, $USE_ARG_HANDLERS = TRUE){ | |
| // Note, this doesn't work with all arguments / relationships. | |
| // Notably those using "current user" will not work as the relationship value will not be set properly. | |
| // Instead convert the view to use a contextual argument and a %# filter. | |
| $view = views_get_view($view_name); | |
| if(empty($view)){ return FALSE; } | |
| if(!array_key_exists($display_id, $view->display)){ return FALSE; } | |
| $display = $view->display[$display_id]; | |
| if(!empty($args)){ |
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
| /** | |
| * @file iga.ustudio.analytics.js | |
| */ | |
| /** | |
| * jQuery External Link Expression Plugin | |
| * @param $ | |
| */ | |
| (function($){ | |
| "use strict"; |
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
| if(Modernizr && Modernizr.inputtypes.date){ | |
| require(["IGA.common.webform"], function(Webform){ | |
| $form.find(".form-item-birthdate.form-type-date-text input").attr({ | |
| type: "date", | |
| autocomplete: "bday", | |
| placeholder: "mm/dd/yyyy", | |
| required: null | |
| }); | |
| $form.find(".form-type-date, .form-type-date-select, .form-type-date-text").each(Webform.dateInput); | |
| }); |
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
| require(["Soundmanager.360.events"], function(events){ | |
| function play(three60Player){ | |
| var $link = $(three60Player._360data.oLink), | |
| $node = $link.closest("article.node"); | |
| $node.addClass("active"); | |
| } | |
| function pause(three60Player){ | |
| var $link = $(three60Player._360data.oLink), | |
| $node = $link.closest("article.node"); |
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
| require(["jquery","qtip"], function($){ | |
| $("a.user-login").qtip({ | |
| content: { text: "Login or Register" }, | |
| style: { classes: "ui-tooltip-shadow ui-tooltip-button ui-tooltip-bolero" }, | |
| position: { my: "top center", at: "bottom center" }, | |
| tip: { corner:false } | |
| }); | |
| }); |
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
| //Check if a Module is hidden by scarecrow | |
| drush sqlq 'select info from system where name = "ctools";' --uli=<domain> info |
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
| git push <subtree_remote> `git subtree split --prefix <subtree_path> -b <merge_branch>`:<subtree_branch> --force |
NewerOlder