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
/** | |
* doAlert() für Warn- und Rückfragedialoge | |
* | |
* @param mixed context | |
* @param mixed title | |
* @param mixed message | |
* @param boolean status | |
*/ | |
@SuppressWarnings("deprecation") | |
public void doAlert(Context context, String title, String message, Boolean status) { |
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
// replace any links that don't start with http | |
if (preg_match_all('#<a href="([^"]+)"#', $text, $matches)) { | |
foreach ($matches[1] as $key => $match) { | |
if (!preg_match('#^https?:#', $match) && !preg_match('#^ftps?:#', $match)) { | |
$match = 'http://' . $match; | |
} | |
$text = preg_replace('#' . preg_quote($matches[0][$key], '#') . '#', '<a href="' . $match . '"', $text, 1); | |
} | |
} |
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
if (!function_exists('mime_content_type')) { | |
function mime_content_type($filename) | |
{ | |
$mime_types = array( | |
'txt' => 'text/plain', | |
'htm' => 'text/html', | |
'html' => 'text/html', |
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
$argv = array(); | |
$tmp = func_get_args(); | |
foreach ($tmp as $key => $value) { | |
$argv[$key] = &$tmp[$key]; | |
} |
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
// Um aus verschiedenen Klassen auf "globale" Objekte und Variablen zuzugreifen, gibt es das Registry. | |
// Die Registry kann als abstract deklariert werden, da nur statische Attribute und Methoden verwendet werden. | |
abstract class Registry | |
{ | |
static $objects = array(); | |
/** | |
* Registry::get() | |
* |
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
var rownumber; | |
var $form_holder = "#renderForm"; | |
var content = ''; | |
var generatecode = function () { | |
var $this = ''; | |
// the first loop for rows | |
$($form_holder + ' .fields').each(function (rownumber) { | |
var blockobject = ''; |
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
Laravel Envoy | |
https://laravel.com/docs/5.4/envoy | |
Installation | |
composer global require "laravel/envoy=~1.0" | |
Initialisierung | |
envoy init [email protected] | |
Ausführen |
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
EasyWeChat | |
https://github.com/overtrue/wechat | |
laravel-wechat | |
https://github.com/overtrue/laravel-wechat | |
Notification | |
https://packagist.org/packages/adzon/laravel-notification-wechat |
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
action | |
add | |
aggregate | |
all | |
alter | |
after | |
and | |
as | |
asc | |
avg |
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
// Hook in | |
add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); | |
// Our hooked in function - $fields is passed via the filter! | |
function custom_override_checkout_fields( $fields ) { | |
$fields['shipping']['shipping_phone'] = array( | |
'label' => __('Phone', 'woocommerce'), | |
'placeholder' => _x('Phone', 'placeholder', 'woocommerce'), | |
'required' => false, | |
'class' => array('form-row-wide'), |