- XAMPP for Windows: https://www.apachefriends.org/download.html
- The VC14 builds require to have the Visual C++ Redistributable for Visual Studio 2015 x86 or x64 installed
- The VC15 builds require to have the Visual C++ Redistributable for Visual Studio 2017 x64 or x86 installed
This file contains hidden or 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
| /** | |
| * Implements hook_commerce_product_reference_default_delta_alter(). | |
| */ | |
| function test_module_commerce_product_reference_default_delta_alter(&$delta, $products) { | |
| $test = 123; | |
| foreach ($products as $product) { | |
| if ($product->commerce_stock['und'][0]['value'] > 0){ | |
| $products[1]->commerce_stock['und'][0]['value'] = "On stock"; | |
| }else { |
This file contains hidden or 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
| ssh-keygen -t rsa -b 4096 -f jwtRS256.key | |
| # Don't add passphrase | |
| openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub | |
| cat jwtRS256.key | |
| cat jwtRS256.key.pub |
This file contains hidden or 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
| https://github.com/spatie | |
| https://github.com/Maatwebsite/Laravel-Excel | |
| https://github.com/laravel-frontend-presets/bulma | |
| https://github.com/LaravelCollective/html | |
| https://github.com/atoum/atoum | |
| https://github.com/atoum/stubs | |
| https://github.com/atoum/reports-extension | |
| https://github.com/barryvdh/laravel-debugbar | |
| https://github.com/fzaninotto/Faker | |
| https://github.com/laravel/tinker |
This file contains hidden or 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
| # Taxonomy terms: | |
| - https://gist.github.com/facine/35bb291811c146b6fc9e#file-create_taxonomy_term-php | |
| # Menu links: | |
| - https://gist.github.com/facine/35bb291811c146b6fc9e#file-create_menu_link-php | |
| # File items: | |
| - https://gist.github.com/facine/35bb291811c146b6fc9e#file-create_file-php | |
| # Nodes: |
This file contains hidden or 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 | |
| //========================================================================= | |
| // Skripta za posiljanje sms preko Simobilove Klape / Najdi.si / Tusmobil | |
| // Verzija 2.40 (c) blackclw @ slo-tech | |
| //========================================================================= | |
| // Pošiljanje: | |
| // SendFreeSms("ponudnik", "uporabniskoime", "geslo", "stevilka", "sporocilo") | |
| // | |
| // Preverjanje stanja: | |
| // SendFreeSms("ponudnik", "uporabniskoime", "geslo", "stevilka", "sporocilo", False) |
NewerOlder