This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Azua, AZ | |
Bahoruco, BH | |
Barahona, BR | |
Dajabón, DJ | |
Duarte, DU | |
Elías Piña, EP | |
El Seibo, ES | |
Espaillat, ET | |
Hato Mayor, HM | |
Hermanas Mirabal, HMI |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a:23:{s:12:"mail_sent_ok";s:40:"Gracias por tu mensaje. Ha sido enviado.";s:12:"mail_sent_ng";s:87:"Hubo un error al intentar enviar tu mensaje. Por favor, inténtelo de nuevo más tarde.";s:16:"validation_error";s:71:"Uno o más campos tienen un error. Por favor revisa e intenta de nuevo.";s:4:"spam";s:82:"Se produjo un error al intentar enviar su mensaje. Inténtelo de nuevo más tarde.";s:12:"accept_terms";s:68:"Debe aceptar los términos y condiciones antes de enviar su mensaje.";s:16:"invalid_required";s:24:"El campo es obligatorio.";s:16:"invalid_too_long";s:28:"El campo es demasiado largo.";s:17:"invalid_too_short";s:28:"El campo es demasiado corto.";s:12:"invalid_date";s:34:"El formato de fecha es incorrecto.";s:14:"date_too_early";s:44:"La fecha es anterior a la primera permitida.";s:13:"date_too_late";s:45:"La fecha es posterior a la última permitida.";s:13:"upload_failed";s:47:"Hubo un error desconocido al cargar el archivo.";s:24:"upload_file_type_invalid";s:51:"No tiene permiso para cargar archivos de |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<select> | |
<option>Santo Domingo</option> | |
<option>Distrito Nacional</option> | |
<option>Santiago</option> | |
<option>San Cristóbal</option> | |
<option>La Vega</option> | |
<option>Puerto Plata</option> | |
<option>San Pedro de Macorís</option> | |
<option>Duarte</option> | |
<option>La Altagracia</option> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function valida_cedula($ced) | |
{ | |
$c = str_replace("-", "", $ced); | |
$cedula = substr($c, 0, - 1); | |
$verificador = substr($c, - 1, 1); | |
$suma = 0; | |
$cedulaValida = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @desc Small script that reads all the files in a matter of wordoress Plugin ... Polylang used to record each string in the Wordpress Admin ... (Appearance -> Languages) | |
* script include polylang_global_register_string() | |
* @author Raylin Aquino [email protected] | |
* @date 08-16-2015 (m-d-y) | |
* @note: It requires installation of Polylang Plugin | |
*/ | |
if (!function_exists("polylang_global_register_string")) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* @author Raylin Aquino <raylinaquino.com> | |
* @since 25-05-2015 (d m Y) | |
* Short script that wrapper all images (<img>) tags in a <figure> tag, with its alt attr. in a <figcaption> tag. | |
* The goal this... is provide the way correct of to show the images in a blog post. | |
*/ | |
function figure_wrap_img($content) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>This is heading 1</h1> | |
<h2>This is heading 2</h2> | |
<h3>This is heading 3</h3> | |
<h4>This is heading 4</h4> | |
<h5>This is heading 5</h5> | |
<h6>This is heading 6</h6> | |
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Distinctio neque incidunt, veniam impedit assumenda accusamus laborum temporibus velit? Nihil nam dolor officia natus vitae, odio accusamus minus nisi asperiores animi.</p> | |
<p>Hic exercitationem temporibus maxime autem sapiente veniam eveniet voluptatem quia voluptas quasi a quidem labore cupiditate praesentium facilis, est distinctio sed adipisci error veritatis ex dolorum ea, animi perspiciatis eligendi.</p> | |
<p>Eius blanditiis totam quisquam atque ipsum veniam, sed. Totam incidunt, maxime enim voluptates natus fugiat tempore reiciendis impedit temporibus nobis, ratione pariatur, odio modi praesentium molestiae voluptatem beatae recusandae hic!</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php # -*- coding: utf-8 -*- | |
/** | |
* Plugin Name: T5 Plugin Log | |
* Description: Log all plugin (de)activations. | |
* Version: 2012.05.27 | |
* Author: Thomas Scholz <[email protected]> | |
* Author URI: http://toscho.de | |
* Colaborator: Raylin Aquino <[email protected]> | |
* Colaborator URL: http://raylinaquino.com | |
* License: MIT |