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
class ApiClientFactory { | |
/** | |
* The client factory service. | |
* | |
* @var ClientFactory | |
*/ | |
protected $clientFactory; | |
/** |
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
services: | |
mymodule.api_client_factory: | |
class: Drupal\mymodule\Factory\ApiClientFactory | |
arguments: ['@http_client_factory', '@domain.negotiator', '@config.factory', '@logger.factory'] |
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
class ApiClientFactory { | |
/** | |
* {@inheritdoc} | |
*/ | |
public function __construct( | |
private readonly ClientFactory $clientFactory, | |
protected DomainNegotiator $domainNegotiator, | |
protected ConfigFactoryInterface $configFactory, | |
protected LoggerChannelFactoryInterface $loggerChannelFactory, |
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
services: | |
mymodule.api_client_factory: | |
class: Drupal\mymodule\Factory\ApiClientFactory | |
autowire: 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
# Block common Wordpress paths. | |
RewriteCond %{REQUEST_URI} ^/wp-(.*)? [NC] | |
RewriteRule ^ - [F] |
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 | |
declare(strict_types=1); | |
namespace App\Maker; | |
use Symfony\Bundle\MakerBundle\ConsoleStyle; | |
use Symfony\Bundle\MakerBundle\Maker\AbstractMaker; | |
use Symfony\Component\Console\Command\Command; | |
use Symfony\Bundle\MakerBundle\DependencyBuilder; |
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
id: redirects | |
label: Old article paths. | |
migration_group: content | |
source: | |
plugin: url | |
data_fetcher_plugin: http | |
data_parser_plugin: simple_xml | |
urls: http://kevinquillen.com/atom.xml | |
namespaces: | |
atom: http://www.w3.org/2005/Atom |
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
openssl req -newkey rsa:2048 -x509 -nodes -keyout cert.key -new -out cert.crt -subj /CN=*.docker.localhost -reqexts SAN -extensions SAN -config <(cat /etc/ssl/openssl.cnf <(printf '[SAN]\nsubjectAltName=DNS:*.docker.localhost')) -sha256 -days 3650 |
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 | |
declare(strict_types = 1); | |
/** | |
* Implements hook_token_info(). | |
*/ | |
function mymodule_token_info() : array { | |
$info['tokens']['node']['custom_year'] = array( | |
'name' => t('Year Field Value'), |
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
#!/bin/sh | |
for branch in $(git branch -a | sed 's/^\s*//' | sed 's/^remotes\///' | grep -v 'master$'); do | |
if [[ "$(git log $branch --since "12 months ago" | wc -l)" -eq 0 ]]; then | |
# I have to do this because "git log" for me returns current directory contents... not sure why yet. | |
if [[ ${branch} == *".sh" ]]; then | |
continue | |
fi | |
local_branch_name=$(echo "$branch" | sed 's/remotes\/origin\///') |
NewerOlder