This documentation has been generated by combining static and dynamic code analysis. Please excuse the lack of information or bad english which is up to the developer of each extension.
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 | |
/* | |
* Like to do a shell import? | |
* | |
* Place this in wp-content/plugins/foo-plugin/bin/import.php | |
*/ | |
function out( $txt ) { | |
if ( func_num_args() > 1 ) { | |
$txt = vsprintf( $txt, array_slice( func_get_args(), 1 ) ); |
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 -i | grep user_ini | |
user_ini.cache_ttl => 10 => 10 | |
user_ini.filename => .user.ini => .user.ini |
Writing commits is a fast and simple process which we do all day. Imagine them becoming powerful for us which finally give them some attention. The following semantic commits will do so and have the aim to:
- Generate a changelog with commits for end-user
- Generate a speaking summary for customer
- Generate a easy to read list of changes for developer
- In general: Make commits parseable by some script
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
function codex_muse_subcategory_taxonomy_init() { | |
// create a new taxonomy | |
register_taxonomy( | |
'subcategory', | |
'page', | |
array( | |
'label' => __( 'Untermenüs' ), | |
'rewrite' => array( 'slug' => 'unterkategorien' ), | |
'capabilities' => array( | |
'assign_terms' => 'edit_guides', |
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
eav: | |
attribute: | |
– attribute_id: 42 | |
entity_type_id: 4 | |
attribute_code: foobar | |
frontend_input: select | |
the_new_one: yyy |
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
import argparse | |
import git | |
import os | |
import colorama | |
import shutil | |
class InitAction(argparse.Action): | |
def __call__(self, parser, namespace, values, option_string=None): | |
if os.path.isdir(".git"): | |
print colorama.Fore.YELLOW + "This is already a project. Skipping the rest." |
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
require 'colored' | |
require 'grit' | |
require 'optparse' | |
require_relative 'git-recap/version' | |
class GitRecap | |
def run(argv) | |
# process_args(argv) |
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
[url "https://github.com/fbrnc/Aoe_TemplateHints.git"] | |
insteadOf = "gh:ath" | |
[url "https://github.com/fbrnc/Aoe_Profiler.git"] | |
insteadOf = "gh:profiler" | |
[url "https://github.com/EcomDev/EcomDev_PHPUnit.git"] | |
insteadOf = "gh:phpunit" | |
[url "https://github.com/sourcerer-mike/magento-devMode.git"] | |
insteadOf = "gh:devmode" | |
[url "https://github.com/madalinoprea/magneto-debug.git"] | |
insteadOf = "gh:debug" |