Skip to content

Instantly share code, notes, and snippets.

@organizm
organizm / Magento_clean_up.php
Last active June 13, 2017 11:16
Magento clean up #magento
<?php
switch($_GET['clean']) {
case 'log':
clean_log_tables();
break;
case 'var':
clean_var_directory();
break;
}
@organizm
organizm / gist:d245fc815e921be59153
Last active June 1, 2016 07:46
JQuery decimal count animated #jquery
jQuery(function($) {
$('.timer').countTo({
from: 0,
to: 4.89,
speed: 4000,
refreshInterval: 1,
onComplete: function(value) {
console.debug(this);
}
});
@organizm
organizm / wp_shortcode.php
Last active May 30, 2016 09:36
Класс создает шорткод, и подгружает скрипты только там где выводится шорткод. #wordpress
<?php
class foobar_shortcode {
static $add_script;
static function init () {
add_shortcode('foobar', array(__CLASS__, 'foobar_func'));
add_action('init', array(__CLASS__, 'register_script'));
add_action('wp_footer', array(__CLASS__, 'print_script'));
}
static function foobar_func( $atts ) {
self::$add_script = true;