Plugin Directory

Changeset 996846


Ignore:
Timestamp:
09/25/2014 08:43:43 PM (12 years ago)
Author:
narando
Message:

version 1.2

Location:
narando
Files:
3 edited
5 copied

Legend:

Unmodified
Added
Removed
  • narando/tags/1.2/Narando_Plugin.php

    r996829 r996846  
    1616           
    1717            'NRAutoplay' => array(__('Autoplay', 'narando-plugin'), 'true', 'false'),
     18            'NRDemo' => array(__('Demo Modus', 'narando-plugin'), 'false', 'true'),
    1819            'NRPosition' => array(__('Position des Players', 'narando-plugin'), 'Before Post', 'After Post'),
    1920            'NRPlayerMobile' => array(__(' Player für Mobile-Endgeräte anzeigen lassen (reagiert nur bei Mobilen-Endgeräten)', 'narando-plugin'), 'true', 'false'),
     
    111112            $permalink = get_permalink($wp_query->post->ID); //get post link
    112113           
     114            $demo = $this->getOption("NRColorControls");
     115            if ($demo == "true") {
     116                $permalink = "http://t3n.de/news/musik-am-arbeitsplatz-539087/";
     117            }
     118           
    113119            $autoplay = "";
    114120            if ("true" == $this->getOption("NRAutoplay")) {
  • narando/tags/1.2/narando.php

    r996838 r996846  
    33   Plugin Name: narando
    44   Plugin URI: http://wordpress.org/extend/plugins/narando/
    5    Version: 1.1
     5   Version: 1.2
    66   Author: Philip Kkleimeyer, narando
    77   Description: Merk Dir mit narando Online- und Printartikel, für die Du gerade keine Zeit hast – und lass sie Dir unterwegs vorlesen.
  • narando/tags/1.2/readme.txt

    r996829 r996846  
    66Requires at least: 3.5
    77Tested up to: 3.9
    8 Stable tag: 1.1
     8Stable tag: 1.2
    99
    1010
     
    3737== Changelog ==
    3838
     39= 1.2 =
     40- Demo modus
     41
    3942= 1.1 =
    4043- Pre- and Post-Text
  • narando/trunk/Narando_Plugin.php

    r996829 r996846  
    1616           
    1717            'NRAutoplay' => array(__('Autoplay', 'narando-plugin'), 'true', 'false'),
     18            'NRDemo' => array(__('Demo Modus', 'narando-plugin'), 'false', 'true'),
    1819            'NRPosition' => array(__('Position des Players', 'narando-plugin'), 'Before Post', 'After Post'),
    1920            'NRPlayerMobile' => array(__(' Player für Mobile-Endgeräte anzeigen lassen (reagiert nur bei Mobilen-Endgeräten)', 'narando-plugin'), 'true', 'false'),
     
    111112            $permalink = get_permalink($wp_query->post->ID); //get post link
    112113           
     114            $demo = $this->getOption("NRColorControls");
     115            if ($demo == "true") {
     116                $permalink = "http://t3n.de/news/musik-am-arbeitsplatz-539087/";
     117            }
     118           
    113119            $autoplay = "";
    114120            if ("true" == $this->getOption("NRAutoplay")) {
  • narando/trunk/narando.php

    r996838 r996846  
    33   Plugin Name: narando
    44   Plugin URI: http://wordpress.org/extend/plugins/narando/
    5    Version: 1.1
     5   Version: 1.2
    66   Author: Philip Kkleimeyer, narando
    77   Description: Merk Dir mit narando Online- und Printartikel, für die Du gerade keine Zeit hast – und lass sie Dir unterwegs vorlesen.
  • narando/trunk/readme.txt

    r996829 r996846  
    66Requires at least: 3.5
    77Tested up to: 3.9
    8 Stable tag: 1.1
     8Stable tag: 1.2
    99
    1010
     
    3737== Changelog ==
    3838
     39= 1.2 =
     40- Demo modus
     41
    3942= 1.1 =
    4043- Pre- and Post-Text
Note: See TracChangeset for help on using the changeset viewer.