Skip to content

Instantly share code, notes, and snippets.

View webkader's full-sized avatar

Baris Aydin webkader

View GitHub Profile
@webkader
webkader / doAlert.java
Last active August 29, 2015 14:24
Custom alert box in Android
/**
* 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) {
@webkader
webkader / linkreplace.php
Created July 13, 2015 19:28
replace any links that don't start with http
// 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);
}
}
@webkader
webkader / mime_content_type.php
Last active March 19, 2022 14:56
PHP Mime type alternative
if (!function_exists('mime_content_type')) {
function mime_content_type($filename)
{
$mime_types = array(
'txt' => 'text/plain',
'htm' => 'text/html',
'html' => 'text/html',
@webkader
webkader / func_get_args.php
Created July 13, 2015 19:41
Hack for php 5.3.2
$argv = array();
$tmp = func_get_args();
foreach ($tmp as $key => $value) {
$argv[$key] = &$tmp[$key];
}
@webkader
webkader / Registry.php
Last active August 29, 2015 14:24
Magic Registry Class
// 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()
*
@webkader
webkader / generatecode.js
Created July 13, 2015 20:59
Simple Generator Code
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 = '';
Laravel Envoy
https://laravel.com/docs/5.4/envoy
Installation
composer global require "laravel/envoy=~1.0"
Initialisierung
envoy init [email protected]
Ausführen
EasyWeChat
https://github.com/overtrue/wechat
laravel-wechat
https://github.com/overtrue/laravel-wechat
Notification
https://packagist.org/packages/adzon/laravel-notification-wechat
action
add
aggregate
all
alter
after
and
as
asc
avg
@webkader
webkader / custom-shipping-and-billing
Created October 14, 2017 20:53 — forked from hannahswain/custom-shipping-and-billing
Customizing WooCommerce checkout fields - Adding custom shipping and billing fields
// 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'),