Changeset 1023793
- Timestamp:
- 11/11/2014 11:02:23 AM (11 years ago)
- Location:
- spain-cookie-law/trunk
- Files:
-
- 3 edited
-
assets/js/cookie-check.js (modified) (2 diffs)
-
cookie-ley-espanola.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
spain-cookie-law/trunk/assets/js/cookie-check.js
r802994 r1023793 59 59 60 60 // funcion que se encarga de mostrar el mensaje legal 61 // @todo: Posible mejora para sacar el texto y que se pueda configurar desde el dashboard de WP.62 61 cargaMensaje: function _cargaMensaje() { 63 62 laCookie = CookieLegal.leerCookie(); … … 69 68 // funcion para leer el valor de la cookie 70 69 leerCookie: function _leerCookie() { 71 laCookie = parseInt( jQuery.cookie( 'cookie_legal_' + CookieLegal.web ) );70 laCookie = parseInt( jQuery.cookie( 'cookie_legal_' + CookieLegal.web ), 10 ); 72 71 return laCookie; 73 72 }, -
spain-cookie-law/trunk/cookie-ley-espanola.php
r827042 r1023793 4 4 * Plugin URI: http://www.pedroventura.com/internet/plugin-en-wordpress-cumplir-ley-espanola 5 5 * Description: Este plugin aporta la funcionalidad para hacer cumplir la ley de cookies en España informado al usuario de que el sitio usa las cookies propias o de terceros para mejorar el servicio de navegación, preferencias, mediciones y/o publicidad 6 * Version: 1.2. 16 * Version: 1.2.2 7 7 * Author: Pedro Ventura 8 8 * Author URI: http://www.pedroventura.com/ … … 164 164 ajaxCallback: "<?php echo home_url(); ?>/wp-admin/admin-ajax.php", 165 165 checkGeoip: "<?php echo $checkGeoip;?>", 166 mensaje: "<?php echo $mensaje;?>", 166 mensaje: "<?php 167 echo str_replace("\n", "<br />", 168 str_replace("\r\n", "\n", $mensaje)); 169 ?>", 167 170 pagePermanlink:"<?php echo page_slug();?>", 168 171 tituloPagina: "<?php echo $tituloPagina;?>", -
spain-cookie-law/trunk/readme.txt
r827042 r1023793 1 1 === Wordpress Plugin Ley Cookie === 2 2 Tags: Cookie, cookies, ley, law, Spain, España 3 Tested up to: 3.84 Stable tag: 1.2. 13 Tested up to: 4.0 4 Stable tag: 1.2.2 5 5 License: GPLv2 or later 6 6 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.