zoekt: 6461 files / 110321 matches (truncated) / 294.66ms neogrok: 12 files / 500 matches

git.drupalcode.org/project/addthis_social_sharejs/addthis.js 19 matches | master | JavaScript | №1

1 // AddThis requires a global variable2 3 var addthis_config,4 addthis_share;5 6 (function ($, Drupal, window, document, undefined) {7 Drupal.behaviors.addThisWidget = {8 9 //@TODO Need to support domready and async loading. See http://support.addthis.com/customer/portal/articles/1338006-url-parameters10

git.drupalcode.org/project/addthis_social_sharesrc/Util/AddThisJson.php 2 matches | master | PHP | №2

6 7 namespace Drupal\addthis_social_share\Util;8
10 11 class AddThisJson {12

git.drupalcode.org/project/addthis_social_shareaddthis_social_share.module 9 matches | master | Text | №3

7 */8 function addthis_social_share_help($route_name, RouteMatchInterface $route_match) {9 switch ($route_name) {10 // Main module help for the addthis_social_share module.11 case 'help.page.addthis_social_share':12 $output = '';13 $output .= '<h3>' . t('About') . '</h3>';14 $output .= '<p>' . t('This module simply provides Drupal integration to addthis.com link sharing service. AddThis is known for our beautifully simple share buttons. But we also offer a full suite of website tools like list builder, link promotion, and recommended posts, all for free. Integration has been implemented as a field and block.') . '</p>';15 return $output;

git.drupalcode.org/project/addthis_social_sharesrc/AddThisScriptManager.php 84 matches | master | PHP | №4

4 *5 * Contains \Drupal\addthis_social_share\AddThisScriptManager6 *
8 *9 * This class will be used on different places. The result of the attachJsToElement()10 * should be the same in every situation within one request and throughout the
12 *13 * When manipulating the configuration do this very early in the request. This14 * could be hook_init() for example. Any other method should be before hook_page_build().15 * The implementation of addthis_page_build() is the first known instance where16 * this class might get used based on the configuration.17 */

git.drupalcode.org/project/addthis_social_shareaddthis_social_share.info.yml 4 matches | master | YAML | №5

1 name: AddThis Social Share2 description: AddThis share buttons, targeting tools and content recommendations help you get more likes, shares and followers and keep them coming back.3 type: module4 package: AddThis Social Share5 core_version_requirement: ^9 || ^106 configure: addthis_social_share.settings7 dependencies:

git.drupalcode.org/project/addthis_social_sharesrc/Tests/AddThisBaseTest.php 13 matches | master | PHP | №6

2 /**3 * @file AddThisBaseTest.php4 * Contains the class for AddThisBaseTest.5 */6 7 namespace Drupal\addthis_social_share\Tests;8
12 /**13 * Tests the add this functionality.14 */15 class AddThisBaseTest extends WebTestBase {16

git.drupalcode.org/project/addthis_social_sharesrc/Tests/AddThisFieldTest.php 62 matches | master | PHP | №7

3 * @file4 * Definition of Drupal\addthis_social_share\Tests\AddThisFieldTest.5 */6 namespace Drupal\addthis_social_share\Tests;7 8 /**9 * Tests the basic functionality provided by AddThis.10 *11 * @group addthis12 */13 class AddThisFieldTest extends AddThisFieldWebTestBase {14

git.drupalcode.org/project/addthis_social_sharesrc/Tests/AddThisBlockTest.php 123 matches | master | PHP | №8

3 * @file4 * Definition of Drupal\addthis_social_share\Tests\AddThisBlockTest.5 */6 namespace Drupal\addthis_social_share\Tests;7
9 /**10 * Tests the basic functionality provided by AddThis.11 *12 * @group addthis13 */14 class AddThisBlockTest extends AddThisBaseTest {15

git.drupalcode.org/project/addthis_social_shareaddthis_social_share.routing.yml 12 matches | master | YAML | №9

1 addthis_social_share.settings:2 path: '/admin/config/user-interface/addthis'3 defaults:4 _form: '\Drupal\addthis_social_share\Form\AddThisSettingsForm'5 _title: 'AddThis'6 requirements:7 _permission: 'administer addthis settings'8 addthis_social_share.settings.advanced:9 path: '/admin/config/user-interface/addthis/advanced'10 defaults:11 _form: '\Drupal\addthis_social_share\Form\AddThisSettingsAdvancedForm'

git.drupalcode.org/project/addthis_social_sharesrc/Form/AddThisSettingsForm.php 117 matches | master | PHP | №10

3 * @file4 * Contains \Drupal\addthis_social_share\Form\AddThisSettingsForm.5 */6 7 namespace Drupal\addthis_social_share\Form;8 9 use Drupal\addthis_social_share\AddThisScriptManager;10 use Drupal\Core\Config\ConfigFactory;

git.drupalcode.org/project/addthis_social_shareaddthis_social_share.services.yml 4 matches | master | YAML | №11

1 services:2 # This service creates a more complex access check.3 addthis.script_manager:4 class: Drupal\addthis_social_share\AddThisScriptManager5 arguments: ['@language_manager', '@config.factory']

git.drupalcode.org/project/addthis_social_sharesrc/Plugin/Block/AddThisBlock.php 51 matches | master | PHP | №12

3 * @file4 * Contains \Drupal\addthis_social_share\Plugin\Block\AddThisBlock.5 */6 7 namespace Drupal\addthis_social_share\Plugin\Block;8 9 use Drupal\addthis_social_share\AddThisBasicButtonFormTrait;10 use Drupal\addthis_social_share\AddThisBasicToolboxFormTrait;11 use Drupal\Core\Block\BlockBase;