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
{# | |
/** | |
* @file | |
* Default theme implementation for main view template. | |
* | |
* Available variables: | |
* - attributes: Remaining HTML attributes for the element. | |
* - css_name: A css-safe version of the view name. | |
* - css_class: The user-specified classes names, if any. | |
* - header: The optional header. |
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
/** | |
* @file | |
* Contains the definition of the behaviour eforphus. | |
*/ | |
(function ($, Drupal, drupalSettings) { | |
'use strict'; | |
Drupal.behaviors.eforphus = { |
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 | |
/** | |
* @file | |
* Contains wa_advice.module. | |
*/ | |
use Drupal\Core\Routing\RouteMatchInterface; | |
use Drupal\node\Entity\NodeType; | |
use Drupal\Core\Form\FormStateInterface; |
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 | |
/** | |
* @file | |
* Contains wa_advice.module. | |
*/ | |
use Drupal\Core\Routing\RouteMatchInterface; | |
use Drupal\node\Entity\NodeType; | |
use Drupal\Core\Form\FormStateInterface; |
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
hidden-xs-down = d-none d-sm-block | |
hidden-sm-down = d-none d-md-block | |
hidden-md-down = d-none d-lg-block | |
hidden-lg-down = d-none d-xl-block | |
hidden-xl-down = d-none (same as hidden) | |
hidden-xs-up = d-none (same as hidden) | |
hidden-sm-up = d-sm-none | |
hidden-md-up = d-md-none | |
hidden-lg-up = d-lg-none | |
hidden-xl-up = d-xl-none |
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
program Project1; | |
{$APPTYPE CONSOLE} | |
uses | |
SysUtils, Math; | |
var a:array[1..100] of byte; | |
sNum: String; | |
n, i, itm: byte; | |
number: Extended; | |
begin |
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
program Project1; | |
{$APPTYPE CONSOLE} | |
uses | |
SysUtils; | |
const n=8; | |
var a,b:array[1..n] of byte; | |
i:byte; | |
begin | |
writeln('Vvedite ',n,' naturaln chisel'); | |
for i:=1 to n do |
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
program HelloWorld; | |
const n = 17; | |
var a: array[1..n] of integer; | |
var i, s: integer; | |
begin | |
s:=0; |
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
#include <stdio.h> | |
#include <conio.h> | |
#include <stdlib.h> | |
int isSort(int* line, int m); | |
int compare(const void * x1, const void * x2); | |
void main() { | |
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 | |
namespace Drupal\hycm_blocks\Plugin\Block; | |
use Drupal\Core\Block\BlockBase; | |
use Drupal\Core\Plugin\ContainerFactoryPluginInterface; | |
use Symfony\Component\DependencyInjection\ContainerInterface; | |
use Drupal\Core\Render\RendererInterface; | |
use Drupal\Core\Config\ConfigFactoryInterface; | |
/** | |
* Provides a 'LandingPageHeader' block. | |
* |