View assignmentHelper.php
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 | |
function incrementDeep(&$array, $value) { | |
$array += $value; | |
} | |
$test['foo']['bar']['test'] = 5; | |
incrementDeep($test['foo']['bar']['test'], 5); | |
incrementDeep($test['foo']['bar']['test2'], 5); |
View BaseEnum.php
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 App\Enums; | |
use App\Rules\IsValidEnum; | |
use Illuminate\Support\Str; | |
abstract class BaseEnum | |
{ | |
protected $name; | |
protected $values = array(); |
View pre-commit.sh
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
#!/bin/sh | |
echo "committing as $(git config user.name) ($(git config user.email))", | |
STAGED_FILES_CMD=`git diff --cached --name-only --diff-filter=ACMR HEAD | grep \\\\.php` | |
#STAGED_FILES_CMD=`git diff --cached --name-only --diff-filter=ACMR HEAD | grep "app/.*\.php"` | |
PROJECT_PATH=`php -r "echo dirname(dirname(realpath('$0')));"` | |
VENDOR_BIN_DIR="${PROJECT_PATH}/vendor/bin/"; |
View wp-config.php
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 | |
// Enable WP_DEBUG mode | |
define( 'WP_DEBUG', true ); | |
// Enable Debug logging to the /wp-content/debug.log file | |
define( 'WP_DEBUG_LOG', true ); | |
// Disable display of errors and warnings | |
define( 'WP_DEBUG_DISPLAY', false ); |
View wp-config.php
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 | |
/** | |
* Fixes issues with symlinked wordpress | |
*/ | |
if ( defined('ABSPATH') ) { | |
$fixed_abspath = str_replace( 'wordpress', 'public', ABSPATH ); | |
define('WP_CONTENT_DIR', $fixed_abspath . 'wp-content'); | |
define('WP_PLUGIN_DIR', $fixed_abspath . 'wp-content/plugins'); | |
} |
View letter-post-list.php
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 | |
$posts = get_posts([ | |
'post_status' => 'publish', | |
'posts_per_page' => -1, | |
'post_type' => 'post' | |
]); | |
$post_index = array_fill_keys( array_merge( [ '#' ], range( 'a', 'z' ), ['å', 'ä', 'ö', ] ), [] ); | |
foreach( $posts as $post ) { | |
$first_letter = strtolower( substr( $post->post_title, 0, 1 ) ); |
View hide-when-free-avaialble.php
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
/** | |
* Hide shipping rates except local delivery when free shipping is available. | |
* Updated to support WooCommerce 2.6 Shipping Zones. | |
* | |
* @param array $rates Array of rates found for the package. | |
* @return array | |
*/ | |
function my_hide_shipping_when_free_is_available( $rates ) { | |
$free = array(); | |
$local_pickup = array(); |
View convert-to-composer.php
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
#!/usr/bin/php | |
<?php | |
/** | |
* USAGE: | |
* | |
* (optional) Download script: | |
* "wget https://gist.githubusercontent.com/pelmered/2ee27f1cb18b8c73a0205ded580e3195/raw/convert-to-composer.php" | |
* | |
* Basic usage: | |
* php convert-to-composer.php |
View taxonomies.php
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 | |
if( class_exists( 'PE_Post_Type_Creator' ) ) | |
{ | |
$ptc = new PE_Post_Type_Creator(); | |
$text_domain = 'text-domain'; | |
$ptc->set_taxonomies(array( | |
'min-taxonomi' => array( | |
'singular_label' => _x('Min taxonomi', 'Post type plural', $text_domain), |
View composer.json
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
{ | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "http://wpackagist.org" | |
}, | |
{ | |
"type": "package", | |
"package": { | |
"name": "advanced-custom-fields/advanced-custom-fields-pro", |
NewerOlder