zoekt: 1633 files / 103858 matches (truncated) / 767.7ms neogrok: 10 files / 500 matches

git.drupalcode.org/project/adaptivethemeat_core/templates/user-profile.tpl.php 23 matches | 7.x-3.x | PHP | №1

3 * @file4 * Adaptivetheme implementation to present all user profile data.5 *6 * This template is used when viewing a registered member's profile page,7 * e.g., example.com/user/123. 123 being the users ID.8 *9 * Use render($user_profile) to print all profile items, or print a subset10 * such as render($user_profile['user_picture']). Always call11 * render($user_profile) at the end in order to print all remaining items. If

git.drupalcode.org/project/ai_audio_fieldsrc/Plugin/AiAutomatorType/AiAudioFieldStory.php 18 matches | 1.0.x | PHP | №2

25 )]26 class AiAudioFieldStory extends RuleBase implements AiAutomatorTypeInterface, ContainerFactoryPluginInterface {27
65 '#title' => $this->t('Voice placeholders'),66 '#description' => $this->t('These are the placeholders that can be used in the text field in both base and advanced mode. You have to add one at least.'),67 '#weight' => 20,
94 '#title' => $this->t('Voice placeholder'),95 '#description' => $this->t('The placeholder that can be used in the text field to replace all things said by that specific person.'),96 '#attributes' => [
112 ],113 '#submit' => [[AiAudioFieldStory::class, 'setProviderInstance']],114 '#element_validate' => [],115 '#ajax' => [116 'callback' => [$this, 'getModelsForProvider'],117 'wrapper' => 'voice-' . $i,

git.drupalcode.org/project/ai_agentsprompts/node_content_type_agent/contentToFieldExtraction.yml 11 matches | 1.3.x, 1.1.x, 1.2.x | YAML | №3

6 You are a Drupal developer who can generate Drupal content. Based on the following7 context of a task description and comments together with the list of all the8 fields and the values that can be filled in for each field, you should figure
11 12 In the list of fields there will also be configs with json encoded values.13 Please look into these configs if you can find something useful for14 filling out the content. For instance, list fields will show the allowed15 values that can be filled out for you to choose from.

git.drupalcode.org/project/ai_agentsprompts/node_content_type_agent/contentToFieldExtraction.yml 11 matches | 1.0.x | YAML | №4

6 You are a Drupal developer who can generate Drupal content. Based on the following7 context of a task description and comments together with the list of all the8 fields and the values that can be filled in for each field, you should figure
11 12 In the list of fields there will also be configs with json encoded values.13 Please look into these configs if you can find something useful for14 filling out the content. For instance, list fields will show the allowed15 values that can be filled out for you to choose from.

git.drupalcode.org/project/associationassociation.install 27 matches | 1.0.x | Text | №5

4 * @file5 * Drupal hooks for installation, updating and checking requirements.6 */
11 /**12 * Implements hook_install().13 */14 function association_install() {15 // Association module hooks should run later than the base entity hooks.
19 /**20 * Implements hook_modules_preuninstall().21 */22 function association_modules_preuninstall($module) {23 if ($module == 'association') {

git.drupalcode.org/project/associationassociation.install 34 matches | 2.0.x | Text | №6

4 * @file5 * Drupal hooks for installation, updating and checking requirements.6 */
11 /**12 * Implements hook_install().13 */14 function association_install(): void {15 // Association module hooks should run later than the base entity hooks.
19 /**20 * Implements hook_modules_preuninstall().21 */22 function association_modules_preuninstall($module): void {23 if ($module == 'association') {

git.drupalcode.org/project/akismetakismet.install 13 matches | 2.x | Text | №7

4 * @file5 * Install and update functions for the Akismet module.6 */
31 // If not, something is wrong; prepare the requirements entry and set32 // defaults for any yet unknown edge-cases.33 $requirements['akismet']['severity'] = REQUIREMENT_ERROR;34 // Append a link to the settings page to the error message on all pages,35 // except on the settings page itself. These error messages also need to be36 // shown on the settings page, since Akismet API keys can be entered later.
82 'entity' => [83 'description' => 'Entity type of the content.',84 'type' => 'varchar',

git.drupalcode.org/project/aidocs/developers/base_calls.md 38 matches | 1.1.x | Markdown | №8

1 # Making AI Base Calls2
4 5 The idea behind the base calls of the AI module are quite simple. First we have an operation type, operation types are requests that we have grouped together because they are similar in fashion. For instance a chat request differs quite from a text-to-image call, thus they are different operation types.6 7 Each of the operation types has to define one interface and two classes at minimum.8 9 1. The operation type interface that decides how the call is done. The base call will have the same name in camelcase as the file. The base call has to take an abstracted input object as well as a raw input. Outside of that other methods can also be requested.10 2. The abstracted input class is a way to abstract the input so, the provider knows what to expect, when that kind of input is given.

git.drupalcode.org/project/astrologyastrology.install 312 matches | 2.x | Text | №9

4 * @file5 * Database Installation.6 */
164 /**165 * Implements hook_install().166 */167 function astrology_install() {168 $data = [
170 'enabled' => '1',171 'about' => "<p>The <strong>zodiac</strong> is an area of the sky centered upon the ecliptic, the apparent path of the Sun across the celestial sphere over the course of the year. The paths of the Moon and visible planets also remain close to the ecliptic, within the belt of the zodiac, which extends 8–9° north or south of the ecliptic, as measured in celestial latitude. In Western astrology and (formerly) astronomy, the zodiac is divided into twelve signs, each occupying 30° of celestial longitude. Because the signs are regular, they do not correspond exactly to the boundaries of the constellations after which they are named.</p>

git.drupalcode.org/project/aidocs/developers/base_calls.md 13 matches | 2.0.x, 1.2.x, 1.3.x | Markdown | №10

4 5 The idea behind the base calls of the AI module are quite simple. First we have an operation type, operation types are requests that we have grouped together because they are similar in fashion. For instance a chat request differs quite from a text-to-image call, thus they are different operation types.6 7 Each of the operation types has to define one interface and two classes at minimum.8 9 1. The operation type interface that decides how the call is done. The base call will have the same name in camelcase as the file. The base call has to take an abstracted input object as well as a raw input. Outside of that other methods can also be requested.10 2. The abstracted input class is a way to abstract the input so, the provider knows what to expect, when that kind of input is given.11 3. The abstracted output class is a way to abstract the output so, the provider knows where to put the and return the output.