Function | Shortcut |
---|---|
Previous Tab | ⌘ + Left Arrow |
Next Tab | ⌘ + Right Arrow |
Go to Tab | ⌘ + Number |
Go to Window | ⌘ + Option + Number |
Go to Split Pane by Direction | ⌘ + Option + Arrow |
Go to Split Pane by Order of Use | ⌘ + ] , ⌘ + [ |
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
// will skip deleting branches master|dev|stage | |
// replace origin with remote name | |
git branch -r --merged| egrep -v "(^\*|master|dev|stage)" | sed 's/origin\///' | xargs -n 1 git push --delete origin |
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
// Change the bundle that needs to be deleted. | |
drush php-eval '$ids = \Drupal::entityQuery("media")->condition("bundle", "image")->execute();$storageHandler = \Drupal::entityTypeManager()->getStorage('media');$entities = $storageHandler->loadMultiple($ids);foreach ($entities as $entity) {$entity->delete();}' |
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 119751 with media entity ID | |
drush php-eval '$nids = \Drupal::entityQuery("node")->condition("type","article")->execute();$nodes = \Drupal\node\Entity\Node::loadMultiple($nids);$media = \Drupal\media\Entity\Media::load(119751);foreach($nodes as $node) {$node->field_hero_media->entity = $media;$node->save();}' |
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
# Check Varnish Header | |
# Use following if no CDN(cloudflare/cloudfront) is used. | |
curl -sLIXGET http://<domain>/page-to-purge | |
# Use following to by-pass CDN | |
curl -sLIXGET -H "Host: <domain>" http://<acquia server ip>/path-to-purge | |
# Example | |
curl -sLIXGET -H "Host: www.test.com" http://12.602.711.xxx/test-page |
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
public function image_upload($image_path, $filename, $is_image_name_set = FALSE) { | |
$output = []; | |
$fid = ParagraphImportProcessParagraph::getFidFromHashing($image_path, $this->configuration); | |
if (!$fid) { | |
$fid = ParagraphImportProcessParagraph::create_image($filename, $image_path, $this->configuration); | |
} | |
if ($fid) { | |
$output = ParagraphImportProcessParagraph::attach_image_info($fid, '', ''); |
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 | |
/** | |
* Perform: Create URL Alias for articles and Delete duplicate aliases; | |
* | |
* Code with in Migrate Plugin | |
* Run it year wise | |
* Get <url> from xml | |
* Can we get <nid>? use #1 : #2 | |
*/ |
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
use Drupal\Core\Serialization\Yaml; | |
use \Drupal\field\Entity\FieldConfig; | |
use \Drupal\field\Entity\FieldStorageConfig; | |
function moudlename_config_updates_update_8103() { | |
//Code for importing field storage. | |
$storage = 'field.storage.paragraph.field_related_media'; | |
$config_path = file_get_contents(DRUPAL_ROOT . '/profiles/custom/profile_name/modules/custom/ |
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
# -*- Conf -*- | |
[color] | |
branch = auto | |
diff = auto | |
status = auto | |
showbranch = auto | |
ui = true | |
# color.branch | |
# A boolean to enable/disable color in the output of git-branch(1). May be set to always, false (or |
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_once './includes/bootstrap.inc'; | |
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); | |
header('Content-Type: text/plain'); | |
function _get_module_count() { | |
$modules = system_list('module_enabled'); | |
foreach ($modules as $module) { | |
if (strpos($module->filename, 'sites/all/modules/contrib') === 0) { |
NewerOlder