Copyright 2013-2014 Carlos Doral Pérez This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA version 0.18 He eliminado la inclusión de los archivos lib/*.php porque ya están presentes en el include WP. */ //EKA header("access-control-allow-origin: *"); // Configuración y definiciones require_once dirname(__FILE__) . '/external-wp.php'; // Lógica del plugin try { cdp_cookies::ajax_traer_aviso(); } catch (cdp_cookies_error $e) { } exit;
License: GPLv2 or later */ /* Copyright 2013-2014 Carlos Doral Pérez This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ // EKA: Cargamos traducciones load_plugin_textdomain('cookies', false, dirname(plugin_basename(__FILE__)) . '/languages'); // Configuración y definiciones require dirname(__FILE__) . '/config.php'; require dirname(__FILE__) . '/lib/lib.php'; require dirname(__FILE__) . '/lib/plugin.php'; // Lógica del plugin try { cdp_cookies::ejecutar(); } catch (cdp_cookies_error $e) { cdp_cookies_log::pon($e->getMessage()); }