| name | description |
|---|---|
ssg |
build websites from markdown files when generate ssg is prompted |
- When generate ssg is added to the prompt read src/content. When there are no markdown files display "Please add source files to the src/content directory."
| <?php | |
| declare(strict_types=1); | |
| namespace App\Pages\Frontend; | |
| use App\NotFound; | |
| use App\Pages\Database\FieldBooleanValues; | |
| use App\Pages\Database\FieldFloatValues; | |
| use App\Pages\Database\FieldIntegerValues; |
| #!/usr/bin/env php | |
| <?php | |
| declare(strict_types=1); | |
| require __DIR__ . '/vendor/autoload.php'; // Composer autoloader (if used) | |
| use Symfony\Component\Process\Process; | |
| /* ------------------------------------------------------------- | |
| Helper functions (no global state) |
| $defaultBrowserValue = "chrome.exe" | |
| $browserInput = Read-Host "Enter browser executable (or press Enter for default [$defaultBrowserValue])" | |
| $browserValue = if ([string]::IsNullOrEmpty($browserInput)) { $defaultBrowserValue } else { $browserInput } | |
| $defaultBrowserSuffixValue = "" | |
| $browserInput = Read-Host "Enter browser suffix when added to the window (or press Enter for default [$defaultBrowserSuffixValue])" | |
| $browserSuffixValue = if ([string]::IsNullOrEmpty($browserInput)) { $defaultBrowserSuffixValue } else { $browserInput } | |
| $defaultDelayValue = "3" | |
| $delayInput = Read-Host "Enter tab appearance delay (or press Enter for default [$defaultDelayValue])" |
| export default { | |
| title: 'Column', | |
| name: 'column', | |
| type: 'object', | |
| fieldsets: [ | |
| {name: 'content', title: 'Content', description: 'Only add content to one of the options'} | |
| ], | |
| fields: [ | |
| { | |
| title: 'Name', |
| function array_filter_by_excluded_keys(array $haysack, array $excluded) { | |
| return array_filter($haysack, function($key) use ($excluded) { | |
| return !in_array($key, $excluded); | |
| }, ARRAY_FILTER_USE_KEY); | |
| } |
| <?php | |
| namespace Drupal\module_name\Controller; | |
| use Drupal\Core\Controller\ControllerInterface; | |
| use Symfony\Component\DependencyInjection\ContainerInterface; | |
| use Drupal\Core\Template\TwigEnvironment; | |
| class FooController implements ControllerInterface { | |
| <h2>Your seat reservations (<span data-bind="text: seats().length"></span>)</h2> | |
| <table> | |
| <thead><tr> | |
| <th>Passenger name</th><th>Meal</th><th>Surcharge</th><th></th> | |
| </tr></thead> | |
| <tbody data-bind="template: {name:'reservationTemplate', foreach: seats}"></tbody> | |
| </table> | |
| <script type="text/x-jquery-tmpl" id="reservationTemplate"> |
| <?php | |
| require_once 'phing/Task.php'; | |
| require_once 'phing/util/FileUtils.php'; | |
| require_once 'System.php'; | |
| require_once "phing/tasks/ext/markdown/markdown.php"; | |
| class MarkdownTask extends Task { | |
| /** |
| <?php | |
| require_once 'phing/Task.php'; | |
| require_once 'phing/util/FileUtils.php'; | |
| require_once 'System.php'; | |
| require_once "phing/tasks/ext/markdown/markdown.php"; | |
| class MarkdownTask extends Task { | |
| /** |