Linted file. Added phpcs.xml config file for linting. Added
[danixland-site-plugin.git] / danixland-site-plugin.php
index ac76474..395263e 100644 (file)
@@ -1,18 +1,22 @@
 <?php
 /*
-Plugin Name: Site Plugin for danixland.net
-Description: Site specific code changes for danixland.net
+Plugin Name: Site Plugin for danix.xyz
+Description: Site specific code changes for danix.xyz
+Plugin URI: https://danix.xyz
+Version: 0.7.3
+Author: Danilo 'danix' Macri
+Author URI: https://danix.xyz
 */
 
 /**
  * Disable admin bar sitewide
  */
-show_admin_bar(__return_false());
+show_admin_bar( __return_false() );
 
 /**
  * Allow Shortcodes inside the html widget
  */
-add_filter( 'widget_text', 'do_shortcode' );
+//add_filter( 'widget_text', 'do_shortcode' );
 
 /**
  * make sure the links menu in the admin is visible
@@ -27,83 +31,48 @@ add_filter( 'pre_option_link_manager_enabled', '__return_true' );
  *
  */
 function danix_gravatar( $atts ) {
-    extract(shortcode_atts(array(
-        'email'        => '',
-        'size'         => '200',
-        'default'      => '',
-        'alt'          => ''
-    ), $atts));
+       extract(
+               shortcode_atts(
+                       array(
+                               'email'        => '',
+                               'size'         => '200',
+                               'default'      => '',
+                               'alt'          => '',
+                       ),
+                       $atts
+               )
+       );
 
-    if( empty($email) )
-        return '';
+       if ( empty( $email ) ) {
+               return '';
+       }
 
-    $output = get_avatar($email, $size, $default, $alt);
+       $output = get_avatar( $email, $size, $default, $alt );
 
-    return $output;
+       return $output;
 }
-add_shortcode('gravatar', 'danix_gravatar');
+add_shortcode( 'gravatar', 'danix_gravatar' );
 
 /**
- * The download button shortcode
- *
- * @param url $link link address.
- * @param string $linkname text that will be displayed by the button.
- * @return string HTML the link tag that will be rendered to the page.
- *
+ * Added baguette.js to display a lightbox for images and galleries
  */
-function danix_download_button( $atts ) {
-    extract(shortcode_atts(array(
-        'link'      => '',
-        'linkname'  => ''
-    ), $atts));
-
-    if ( empty($link) )
-        return '';
-
-    $output = sprintf(
-        '<a href="%s" class="download_button">%s</a>',
-        $link,
-        $linkname
-    );
-
-    return $output;
+function baguette_register_assets() {
+       wp_register_script( 'baguettebox', plugin_dir_url( __FILE__ ) . '/baguette/baguetteBox.min.js', array(), '1.11.1', true );
+       wp_register_script( 'baguetteload', plugin_dir_url( __FILE__ ) . '/baguette/baguetteLoad.js', array(), '1.11.1', true );
+       wp_register_style( 'baguettebox-css', plugin_dir_url( __FILE__ ) . '/baguette/baguetteBox.min.css', array(), '1.11.1' );
 }
-add_shortcode('download', 'danix_download_button');
-
-/**
- * The google analytics code
- *
- */
-function danix_google_anal() {?>
-<!-- Global site tag (gtag.js) - Google Analytics -->
-<script async src="https://www.googletagmanager.com/gtag/js?id=UA-23882460-1"></script>
-<script>
-  window.dataLayer = window.dataLayer || [];
-  function gtag(){dataLayer.push(arguments);}
-  gtag('js', new Date());
-
-  gtag('config', 'UA-23882460-1');
-</script>
-<?php }
-add_action('wp_head', 'danix_google_anal', 10);
+add_action( 'wp_enqueue_scripts', 'baguette_register_assets' );
 
-/**
- * The googlemaps shortcode
- *
- * @param width the width of the returned map
- * @param height the height of the returned map
- * @param src the url of the map you want to display
- * @return string HTML the map object
- * @since 0.57
- *
- */
-function danix_gmaps($atts, $content = null) {
-    extract(shortcode_atts(array(
-      "width" => '640',
-      "height" => '480',
-      "src" => ''
-    ), $atts));
-    return '<iframe width="'.$width.'" height="'.$height.'" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="'.$src.'&amp;output=embed" ></iframe>';
+function baguette_enqueue_assets() {
+       if ( has_block( 'gallery' ) || has_block( 'image' ) ) {
+               wp_enqueue_script( 'baguettebox' );
+               wp_enqueue_script( 'baguetteload' );
+               wp_enqueue_style( 'baguettebox-css' );
+       }
 }
-add_shortcode("googlemaps", "danix_gmaps");
+add_action( 'wp_enqueue_scripts', 'baguette_enqueue_assets' );
 
+/*
+ * Do not translate smileys into emoticons.
+ */
+add_filter( 'option_use_smilies', '__return_false' );