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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Frame</title> | |
<style type="text/css"> | |
.body { | |
height: 10000px; | |
display: block; | |
width: 100%; | |
} |
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 | |
return array( | |
/* | |
|-------------------------------------------------------------------------- | |
| Date Language Lines | |
|-------------------------------------------------------------------------- | |
| | |
| The following language lines are used by the date library. Each line can |
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
{ | |
"menu" : "მენიუ", | |
"view" : "View", | |
"top" : "Top", | |
"new" : "New", | |
"best" : "საუკეთესო", | |
"digest" : "Digest", | |
"scheduled" : "Scheduled", | |
"users" : "მოხმარებლები", | |
"settings" : "სეთინგები", |
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
@font-face { | |
font-family: mtavruli; | |
src: url(../fonts/bpg-le-studio-caps.ttf); | |
} | |
@font-face { | |
font-family: mxedruli; | |
src: url(../fonts/bpg-le-studio-04.ttf); | |
} |
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
root@9c76c50b4019:/var/www/project/web# phpcs modules/custom/sync_data/drush/sync_data.drush.inc | |
FILE: ...w/project/web/modules/custom/sync_data/drush/sync_data.drush.inc | |
---------------------------------------------------------------------- | |
FOUND 100 ERRORS AND 1 WARNING AFFECTING 73 LINES | |
---------------------------------------------------------------------- | |
3 | ERROR | [ ] Missing short description in doc comment | |
7 | ERROR | [ ] Content of the @author tag must be in the form | |
| | "Display Name <[email protected]>" | |
8 | WARNING | [ ] PHP version not specified |
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
phpcs --standard=Drupal,DrupalPractice,DrupalStrict --extensions=php,module,install,profile,drush.inc,yml,test,admin.inc,js,css --report-width=4 --colors ./web/modules/custom/ | |
FILE: ...w/project/web/modules/custom/sync_data/drush/sync_data.drush.inc | |
---------------------------------------------------------------------- | |
FOUND 33 ERRORS AND 8 WARNINGS AFFECTING 19 LINES | |
---------------------------------------------------------------------- | |
7 | WARNING | [ ] @author tags are not usually used in Drupal, | |
| | because over time multiple contributors will | |
| | touch the code anyway | |
58 | WARNING | [ ] Line exceeds 80 characters; contains 84 |
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
phpcs --standard=Drupal,DrupalPractice,DrupalStrict --extensions=php,module,install,profile,drush.inc,yml,test,admin.inc,js,css --report-width=4 --colors ./web/modules/custom/ ./web/themes/contrib/ | |
FILE: ...web/themes/contrib/wfp_base/css/components/wfp-base.messages.css | |
---------------------------------------------------------------------- | |
FOUND 40 ERRORS AFFECTING 40 LINES | |
---------------------------------------------------------------------- | |
6 | ERROR | [x] Line indented incorrectly; expected 2 spaces, found | |
| | 4 | |
7 | ERROR | [x] Line indented incorrectly; expected 2 spaces, found | |
| | 4 |
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
<<<<<<< c45d88ada97a23a4aadd4aec9ad201c2a29370f1 | |
{# | |
/** | |
======= | |
{#/** | |
>>>>>>> commit with theme (merged with feature/theme) | |
* @file | |
* Theme override to display a menu. | |
* | |
* Available variables: |
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 | |
$entity = \Drupal::entityTypeManager()->getStorage('user')->create(array()); | |
$formObject = \Drupal::entityTypeManager() | |
->getFormObject('user', 'register') | |
->setEntity($entity); | |
$form = \Drupal::formBuilder()->getForm($formObject); | |
print \Drupal::service('renderer')->render($form); |