In babun eseguire:
pact install php-phar php-json php-iconv php-posix php-tokenizer php-mbstring php-zlib php-ctype php-simplexml
Evitare il file:
/etc/php5/php.ini
cercare
| /** | |
| * Implements hook_css_alter(). | |
| */ | |
| function THEME_NAME_css_alter(&$css) { | |
| foreach ($css as &$style) { | |
| $style[‘weight’] += $style[‘group’]; | |
| $style[‘group’] = CSS_DEFAULT; | |
| $style[‘every_page’] = TRUE; | |
| } | |
| } |
| <link href=”https://YOUR_SITE/sites/default/files/css/css_Im0fVjX_Bf9K0gv9TRIdLqdmQqYcn36DNoGJMZcEt8w.css" type=”text/css” rel=”stylesheet” media=”all” /> | |
| <link href=”https://YOUR_SITE/sites/default/files/css/css_dRleluwuM8YsCCiN289fvI8am_PNta1qTn2E2aZ8iTM.css" type=”text/css” rel=”stylesheet” media=”all” /> | |
| <link href=”https://YOUR_SITE/sites/default/files/css/css__XYT6qARAADWfRmAVEkmu0eIHJgB9bV0eyx6bYZIeWk.css" type=”text/css” rel=”stylesheet” media=”all” /> |
| const AUTHOR_NAME = 'mavimo'; | |
| Array.prototype.forEach.call(document.querySelectorAll('.review-comment'), function (el, i) { | |
| if (el.querySelector('.author').innerHTML == AUTHOR_NAME && el.querySelector('p sub') !== null && el.querySelector('p sub').innerHTML.startsWith('reported by')) { | |
| el.querySelector('.js-comment-delete button').removeAttribute('data-confirm'); | |
| el.querySelector('.js-comment-delete button').click(); | |
| } | |
| }); |
| version: '3' | |
| services: | |
| traefik: | |
| image: traefik:1.4.0-rc3 | |
| ports: | |
| - 80:80 | |
| - 8080:8080 | |
| volumes: | |
| - ./traefik-work.toml:/etc/traefik/traefik.toml |
| // jQuery | |
| $.ajax({ | |
| url: 'https://api.plannify.com/v1/auth/search', | |
| data: { | |
| 'txtSearch': 'concerto', | |
| 'lat': 45.444101499999995, | |
| 'lng': 9.2077104, | |
| 'distance': 15 | |
| }, | |
| type: 'GET', |
| <?php | |
| namespace Codemaster\Esercizio2; | |
| use Codemaster\Esercizio2\AnimaleInterface; | |
| abstract class Animale implements AnimaleInterface | |
| { | |
| private $carne; |
In babun eseguire:
pact install php-phar php-json php-iconv php-posix php-tokenizer php-mbstring php-zlib php-ctype php-simplexml
Evitare il file:
/etc/php5/php.ini
cercare
| <?php | |
| namespace Codemaster\Example\Day2; | |
| use Codemaster\Example\Day2\EngineInterface; | |
| class Car | |
| { | |
| private $engine; | |
| private $wheels; |