Exemplo n.º 1
0
function GetDateInWords($string, $pattern = '%Y-%m-%d', $language = 'INA')
{
    $arr = BreakString($pattern, '%', 1);
    $temp = $string;
    $result = '';
    $year = '';
    $month = '';
    $day = '';
    foreach ($arr as $a) {
        $length = 0;
        if ($a == '%Y') {
            $year = $substring = substr($temp, 0, 4);
            $length = 4;
        } else {
            if ($a == '%y') {
                $substring = substr($temp, 0, 2);
                $year = ($year + 0 < 30 ? '20' : '19') . $substring;
                $length = 2;
            } else {
                if ($a == '%m') {
                    $month = $substring = GetMonthName(substr($temp, 0, 2), $language);
                    $length = 2;
                } else {
                    if ($a == '%d') {
                        $day = $substring = substr($temp, 0, 2);
                        $length = 2;
                    } else {
                        $substring = $a;
                        $length = strlen($a);
                    }
                }
            }
        }
        $temp = substr($temp, $length);
    }
    return $day . ' ' . $month . ' ' . $year;
}
Exemplo n.º 2
0
			break;
		case "n":
			$color = imagecolorallocate($lienzo, 0, 0, 0);
			break;
		case "s":
			$color = imagecolorallocate($lienzo, 0, 0, 196);
			break;
	}

	for ($i=0; $i<=(0.5*($proporcionX * $proporcionY / 2)); $i++) {
		imagerectangle($lienzo, $_REQUEST["x"] + $i, $_REQUEST["y"] + $i, ($_REQUEST["x"] + 64 * $proporcionX) - $i, ($_REQUEST["y"] + 48 * $proporcionY) - $i, $color);
		imagerectangle($lienzo, $_REQUEST["x"] + (9 * $proporcionX) + $i, $_REQUEST["y"] + (12 * $proporcionY) + $i, ($_REQUEST["x"] + (64 * $proporcionX)) - (9 * $proporcionX) - $i, ($_REQUEST["y"] + (48 * $proporcionY)) - (12 * $proporcionY) - $i, $color);
	}

	imagettftext($lienzo, (5 * $proporcionX), 0, $_REQUEST["x"] + (6 * $proporcionX), $_REQUEST["y"] + (9 * $proporcionY), $color, $fuente, "Provincia ART S.A.");
	imagettftext($lienzo, (5 * $proporcionX), 0, $_REQUEST["x"] + (11.6 * $proporcionX), $_REQUEST["y"] + (26 * $proporcionY), $color, $fuente, $arrFecha[0]." ".strtoupper(substr(GetMonthName($arrFecha[1]), 0, 3))." ".$arrFecha[2]);
	imagettftext($lienzo, (5 * $proporcionX), 0, $_REQUEST["x"] + (14 * $proporcionX), $_REQUEST["y"] + (44 * $proporcionY), $color, $fuente, getLeyendaSello($_REQUEST["tipoSello"]));
}

if ($_REQUEST["extension"] == "png")
	imagepng($lienzo, $fileOutput);
else		// jpg o jpeg..
	imagejpeg($lienzo, $fileOutput);

imagedestroy($lienzo);
?>
<html>
	<head>
		<script>
			function cargaCompletada() {
				with (document) {
Exemplo n.º 3
0
$params = array(":idboletin" => $_REQUEST["b"], ":posicion" => $_REQUEST["n"]);
$sql =
	"SELECT ba_ano, ba_emailscontacto, ba_fecha, ba_numero, na_altoimagenes, na_anchoimagenes, na_colortitulo, na_id, na_nota, na_numeroplantilla, na_titulo
		 FROM rrhh.rna_noticiasarteria, rrhh.rba_boletinesarteria
		WHERE na_idboletin = ba_id
			AND na_idboletin = :idboletin
			AND na_posicion = :posicion";
$stmt = DBExecSql($conn, $sql, $params);
$row = DBGetQuery($stmt);

$numeroPlantilla = 1;
if ($row["NA_NUMEROPLANTILLA"] != "")
	$numeroPlantilla = $row["NA_NUMEROPLANTILLA"];

$vals = split("/", $row["BA_FECHA"]);
$fecha = GetDayName(date("N", strtotime($vals[2]."-".$vals[1]."-".$vals[0])))." ".$vals[0]." de ".GetMonthName($vals[1])." de ".$vals[2];

$ano = "Año ".decimalToRomana($row["BA_ANO"]);
$numero = "Número ".decimalToRomana($row["BA_NUMERO"]);

$modo = "r";		// Real..
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
	<head>
		<title>ARTeria Noticias - <?php 
echo $row["NA_TITULO"];
?>
</title>
		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
		<meta name="Author" content="Gerencia de Sistemas" />
Exemplo n.º 4
0
			if (($file != ".") and ($file != ".."))
				array_push($files, $file);
		closedir($gd);
	}
rsort($files, SORT_NUMERIC);
?>
<script>
	showTitle(true, 'BOLETINES DE SEGURIDAD INFORMÁTICA');
</script>
<body link="#00539B" vlink="#00539B" alink="#00539B">

<div align="center">
	<table border="0" cellspacing="0" height="16" width="339" id="table1">
		<tr>
			<td align="center" height="1" width="433" colspan="2"><p align="center" style="margin-top: 0; margin-bottom: 0"><font face="Neo Sans" color="#807F84" size="3"><b>Boletines del Mes de <?php 
echo GetMonthName($_REQUEST["mes"]);
?>
 de <?php 
echo $_REQUEST["ano"];
?>
</b></font></p><hr size="1" color="#807F84"></td>
		</tr>
	</table>
	<table cellspacing="0" height="16" width="339" id="table1">
<?
foreach ($files as $value) {
	$arr = explode(".", $value);
?>
		<tr>
			<td style="border: 1 solid #C0C0C0" align="center" height="17" width="17"><a target="_blank" href="<?php 
echo $relativeDir . $value;
Exemplo n.º 5
0
</script>
<body link="#00539B" vlink="#00539B" alink="#00539B">
<?
validarParametro(isset($_REQUEST["mes"]));

$dir = DATA_BOLETIN_OFICIAL_PATH.date($_REQUEST["ano"]."/".$_REQUEST["mes"]."/");
$folders = array();
$list = new ListOfItems("", "Boletines ".GetMonthName($_REQUEST["mes"])." ".$_REQUEST["ano"]);

if (is_dir($dir))
	if ($gd = opendir($dir)) {
		while (($dia = readdir($gd)) !== false)
			if (($dia != ".") and ($dia != ".."))
				array_push($folders, $dia);
		closedir($gd);
	}
rsort($folders);		// Ordeno el array descendentemente..


foreach($folders as $value)
	$list->addItem(new ItemList("/index.php?pageid=15&dia=".$value."&mes=".$_REQUEST["mes"]."&ano=".$_REQUEST["ano"], "Boletín Oficial del día ".$value." de ".GetMonthName($_REQUEST["mes"])." de ".$_REQUEST["ano"], "_self", false, true));

$list->setCols(2);
$list->setColsWidth(320);
$list->setImagePath("/modules/boletin_oficial/images/flecha.gif");
$list->setTitleAlign("left");
$list->draw();
?>
<p>&nbsp;</p>
<p><a href="index.php?pageid=16" style="text-decoration: none; font-weight: 700"><< VOLVER</a></p>
</body>
Exemplo n.º 6
0
		<div align="center" class="divSubSeccion" id="divLugarFechaSuscripcion">7. LUGAR Y FECHA DE SUSCRIPCIÓN</div>
		<div align="left" style="color:#211e1e; font-size:8pt; margin-left:8px;">
			<div>
				<label for="lugarSuscripcion">En</label>
				<input class="input2" id="lugarSuscripcion" maxlength="64" name="lugarSuscripcion" style="text-transform:uppercase; width:280px;" type="text" value="<?php 
echo $row["SA_LUGARSUSCRIPCION"];
?>
" onBlur="this.value = this.value.toUpperCase();">
				<label for="diaSuscripcion">a los</label>
				<input class="input2" id="diaSuscripcion" name="diaSuscripcion" style="width:40px;" type="text" value="<?php 
echo $row["DIASUSCRIPCION"];
?>
" readonly>
				<label for="mesSuscripcion">días del mes de</label>
				<input class="input2" id="mesSuscripcion" name="mesSuscripcion" style="width:160px;" type="text" value="<?php 
echo GetMonthName($row["MESSUSCRIPCION"]);
?>
" readonly>
				<label for="anoSuscripcion">de</label>
				<input class="input2" id="anoSuscripcion" name="anoSuscripcion" style="width:64px;" type="text" value="<?php 
echo $row["ANOSUSCRIPCION"];
?>
" readonly>
			</div>
			<div style="font-weight:700; margin-bottom:2px; margin-top:16px;">&gt; Datos del comercializador</div>
			<div style="margin-bottom:6px;">
				<label for="nombreComercializador">Nombre y Apellido</label>
				<input class="input2" id="nombreComercializador" maxlength="100" name="nombreComercializador" style="text-transform:uppercase; width:624px;" type="text" value="<?php 
echo $row["NOMBRECOMERCIALIZADOR"];
?>
" onBlur="this.value = this.value.toUpperCase();">
	$quincena++;

$pdf->Ln(36.6);
$pdf->Cell(80);
$pdf->Cell(0, 0, $quincena." DE ".$row["ANOFECHAFULL"]);

$pdf->Ln(-38.6);
$pdf->Cell(164);
$pdf->Cell(0, 0, $row["IL_FECHA"]);

$pdf->Ln(6.4);
$pdf->Cell(164);
$pdf->Cell(0, 0, $row["NROFACTURA"]);

$pdf->Ln(30);
$pdf->Cell(140);
$pdf->Cell(0, 0, $rowFirmante["FI_FIRMANTE"]);

$pdf->Ln(5);
$pdf->Cell(138.4);
$pdf->Cell(0, 0, $rowFirmante["FI_CARACTER"]);

$pdf->Ln(13);
$pdf->Cell(1);
$pdf->Cell(0, 0, "EXPEDIDA EN BUENOS AIRES A LOS ".date("d")." DÍAS DEL MES DE ".strtoupper(GetMonthName($row["MESRETENCION"]))." DE ".date("Y"));


$pdf->Image("http://extranet-desa.artprov.com.ar/modules/usuarios_registrados/agentes_comerciales/comisiones/images/firma.jpg", 153, 124, 27, 25); //336, 313

$pdf->Output();
?>
Exemplo n.º 8
0
<?php

include 'header2.php';
$sessionuserid = $_SESSION['id'];
$sessionaccounttype = $_SESSION['accounttype'];
$mwaka = $_GET['year'];
$mwezi = $_GET['mwezi'];
$displaymonth = GetMonthName($mwezi);
if (isset($mwaka)) {
    if (isset($mwezi)) {
        $defaultmonth = $displaymonth . ' - ' . $mwaka;
        //get current month and year
        $currentmonth = $mwezi;
        $currentyear = $mwaka;
    } else {
        $defaultmonth = $mwaka;
        //get current month and year
        $currentmonth = 0;
        //get current month and year
        $currentyear = $mwaka;
    }
} else {
    $defaultmonth = date("M-Y");
    //get current month and year
    $currentmonth = date("m");
    $currentyear = date("Y");
}
$province = $_GET['province'];
// Use this line or below line if register_global is off
$provincequery = mysql_query("select Name from provinces where ID='{$province}'") or die(mysql_error());
$provarray = mysql_fetch_array($provincequery);
Exemplo n.º 9
0
function ViewDateFormat($StringDate, $Mode = 1)
{
    if ($StringDate == "") {
        return "-";
    } else {
        $aDate = substr($StringDate, 8, 2);
        $aMonth = substr($StringDate, 5, 2);
        $aYear = substr($StringDate, 0, 4);
        switch ($Mode) {
            /* 23-03-2004 09:13:55 */
            case 1:
                return $aDate . "-" . $aMonth . "-" . $aYear;
                break;
                /* 23 Mar 2004 09:13:55 */
            /* 23 Mar 2004 09:13:55 */
            case 2:
                return $aDate . " " . GetMonthName($aMonth, "shortdate", "in") . " " . $aYear;
                break;
                /* 23 March 09:13:55 */
            /* 23 March 09:13:55 */
            case 3:
                return $aDate . " " . GetMonthName($aMonth, "longdate", "in") . " " . $aYear;
                break;
                /* 23/03/2004 09:13:55 */
            /* 23/03/2004 09:13:55 */
            case 4:
                return $aDate . "/" . $aMonth . "/" . $aYear;
                break;
                /* 23/03/2004 09:13:55 */
            /* 23/03/2004 09:13:55 */
            case 5:
                return $aDate . "/" . $aMonth . "/" . $aYear;
                break;
                /* 23 March 2005 */
            /* 23 March 2005 */
            case 6:
                return $aDate . " " . GetMonthName($aMonth, "longdate", "en") . " " . $aYear;
                break;
        }
    }
}
	// Muestro el texto de arriba de las firmas..
	$pdf->SetFont("Arial", "", 9);
	$pdf->Ln(4);
	$texto = explode("\n", "Por medio de la presente ".$row2["RAZON_SOCIAL"]." autoriza a Provincia ART S.A. a entregar a Provincia Seguros S.A. la información sobre la nómina (datos de Empleados, Masa Salarial, C.U.I.L., Nombre, etc.) e información complementaria que a criterio de la aseguradora permita tener un conocimiento de la actividad y del comportamiento del riesgo inherente a la cobertura.");
	for ($i=0; $i<count($texto); $i++) {
		$str = trim($texto[$i]);

		$pdf->WordWrap($str, 188);
		$pdf->Write(4, $str);

		$pdf->Ln(2);
	}

	$pdf->SetX(8);
	$pdf->SetY(250);
	$pdf->Cell(120, 0, "Buenos Aires, ".date("d")." de ".GetMonthName(date("m"))." de ".date("Y"));

	updateFechaImpresion((isset($idFormulario)?$idFormulario:0));
}
else {
	$pdf->AddPage();
	$pdf->SetTextColor(255, 0, 0);
	$pdf->SetFont("Arial", "B", 14);

	$pdf->Ln(30);
	$pdf->Cell(0, 0, $msgSqlVacio, 0, 0, "C");
}

if ($autoPrint)
	$pdf->AutoPrint(false);
Exemplo n.º 11
0
<?
require_once($_SERVER["DOCUMENT_ROOT"]."/constants.php");
require_once($_SERVER["DOCUMENT_ROOT"]."/../Common/database/db_funcs.php");
require_once($_SERVER["DOCUMENT_ROOT"]."/../Common/miscellaneous/date_utils.php");
require_once($_SERVER["DOCUMENT_ROOT"]."/../Common/miscellaneous/general.php");


$today = GetDayName(date("N"))." ".date("j")." de ".GetMonthName(date("n"))." de ".date("Y");
?>

<img border="0" id="imagen2HomePage" src="images/entrenos.jpg">
<span id="fechaHomePage"><?php 
echo $today;
?>
</span>
<map name="FPMap0"><area href="/" shape="rect" coords="62, 4, 206, 51"></map>
<img border="0" id="cube" name="cube" src="images/logo_provart.jpg" style="filter:progid:DXImageTransform.Microsoft.Stretch(stretchStyle='PUSH')" usemap="#FPMap0">
Exemplo n.º 12
0
			break;
		case "s":
			$pdf->SetDrawColor(0, 0, 196);
			$pdf->SetTextColor(0, 0, 196);
			break;
	}
	
	$pdf->SetLineWidth(0.8);
	$pdf->Rect($_REQUEST["x"], $_REQUEST["y"], (64 * 0.8289), (52 * 0.6745), "D");
	$pdf->Rect($_REQUEST["x"] + 5, $_REQUEST["y"] + 9, (64 * 0.8289) - 10, (52 * 0.6745) - 18, "D");

	$pdf->SetXY($_REQUEST["x"] + 0.4, $_REQUEST["y"] + 5);
	$pdf->Cell(0, 0, "Provincia ART S.A.");

	$pdf->SetXY($_REQUEST["x"] + 8, $_REQUEST["y"] + 18);
	$pdf->Cell(0, 0, $arrFecha[0]." ".strtoupper(substr(GetMonthName($arrFecha[1]), 0, 3))." ".$arrFecha[2]);

	$pdf->SetFont("Arial", "B", 18);
	$pdf->SetXY($_REQUEST["x"] + 3.4, $_REQUEST["y"] + 31);
	$pdf->Cell(46, 0, getLeyendaSello($_REQUEST["tipoSello"]), 0, 1, "C");
}

if ($_REQUEST["accion"] == "g")
	$pdf->Output("Aviso de Obra.pdf", "D");
if ($_REQUEST["accion"] == "i") {
	$pdf->AutoPrint(false);
	$pdf->Output();
}
if ($_REQUEST["accion"] == "v")
	$pdf->Output();
?>
$pdf->Cell(8);
$pdf->Cell(24, 0, $row["FECHARETENCION"]);

$pdf->Cell(18);
$pdf->Cell(28, 0, $row["MONTOIMPONIBLE"]);

$pdf->Cell(15);
$pdf->Cell(24, 0, $row["ALICUOTA"]);

$pdf->Cell(2);
$pdf->Cell(24, 0, $row["RETENCION"]);

$pdf->Cell(16);
$pdf->Cell(36, 0, $row["NROFACTURA"]);

$pdf->Ln(107);
$pdf->Cell(2);
$pdf->Cell(0, 0, "Buenos Aires, ".$row["DIARETENCION"]." de ".GetMonthName($row["MESRETENCION"])." de ".$row["ANORETENCION"]);

$pdf->Ln(6);
$pdf->Cell(148);
$pdf->Cell(0, 0, $rowFirmante["FI_FIRMANTE"]);

$pdf->Ln(5);
$pdf->Cell(146.4);
$pdf->Cell(0, 0, $rowFirmante["FI_CARACTER"]);

$pdf->Image("http://extranet-desa.artprov.com.ar/modules/usuarios_registrados/agentes_comerciales/comisiones/images/firma.jpg", 156, 222, 34, 31); //336, 313

$pdf->Output();
?>
Exemplo n.º 14
0
<?
require_once($_SERVER["DOCUMENT_ROOT"]."/constants.php");
require_once($_SERVER["DOCUMENT_ROOT"]."/../Classes/provart/list_of_items.php");
?>
<script>
	showTitle(true, 'BOLETÍN OFICIAL');
</script>
<body link="#00539B" vlink="#00539B" alink="#00539B">
<?
validarParametro(isset($_REQUEST["dia"]));

$dir = DATA_BOLETIN_OFICIAL_PATH.date("Y/m/");
$fecha = $_REQUEST["dia"]." de ".GetMonthName($_REQUEST["mes"])." de ".$_REQUEST["ano"];

$list = new ListOfItems("/modules/boletin_oficial/", "Boletín Oficial del día ".$fecha);

$list->addItem(new ItemList("ver_boletin.php?ano=".$_REQUEST["ano"]."&mes=".$_REQUEST["mes"]."&dia=".$_REQUEST["dia"]."&seccion=1&today=".date("YmdHis"), "Primera Sección: Legislación y Avisos Oficiales", "_blank"));
$list->addItem(new ItemList("ver_boletin.php?ano=".$_REQUEST["ano"]."&mes=".$_REQUEST["mes"]."&dia=".$_REQUEST["dia"]."&seccion=2&today=".date("YmdHis"), "Segunda Sección: Comerciales/Judiciales", "_blank"));
$list->addItem(new ItemList("ver_boletin.php?ano=".$_REQUEST["ano"]."&mes=".$_REQUEST["mes"]."&dia=".$_REQUEST["dia"]."&seccion=3&today=".date("YmdHis"), "Tercera Sección: Contrataciones", "_blank"));

$list->setCols(1);
$list->setColsWidth(320);
$list->setImagePath("/modules/boletin_oficial/images/flecha.gif");
$list->setTitleAlign("center");
$list->draw();
?>
	<p>&nbsp;</p>
	<p align="center"><a href="index.php?pageid=14" style="text-decoration: none; font-weight: 700"><< VOLVER</a></p>
</body>
Exemplo n.º 15
0
<script>
	showTitle(true, 'BOLETÍN OFICIAL');
</script>
<?
$ano = date("Y");
$dir = DATA_BOLETIN_OFICIAL_PATH.date("Y/m/");
$folders = array();
$list = new ListOfItems("");
$mes = date("m");

if (is_dir($dir))
	if ($gd = opendir($dir)) {
		while (($dia = readdir($gd)) !== false)
			if (($dia != ".") and ($dia != ".."))
				array_push($folders, $dia);
		closedir($gd);
	}
rsort($folders);		// Ordeno el array por fecha descendente..


foreach($folders as $value)
	$list->addItem(new ItemList("/index.php?pageid=15&dia=".$value."&mes=".$mes."&ano=".$ano, "Boletín Oficial del día ".$value." de ".GetMonthName($mes)." de ".$ano, "_self", false, true));
$list->addItem(new ItemList("/index.php?pageid=16", "Boletines Anteriores", "_self", false, true));

$list->setCols(2);
$list->setColsWidth(320);
$list->setShowTitle(false);
$list->setImagePath("/modules/boletin_oficial/images/flecha.gif");
$list->draw();
?>