当前位置: 首页>>代码示例>>PHP>>正文


PHP Formatter::code_format方法代码示例

本文整理汇总了PHP中Formatter::code_format方法的典型用法代码示例。如果您正苦于以下问题:PHP Formatter::code_format方法的具体用法?PHP Formatter::code_format怎么用?PHP Formatter::code_format使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Formatter的用法示例。


在下文中一共展示了Formatter::code_format方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: formato_campo

 public function formato_campo($field, $name)
 {
     $data = $field;
     if (strstr($name, 'codigo')) {
         $data = Formatter::code_format($field);
     } elseif (strstr($name, 'fecha')) {
         $data = Formatter::datetime_format($field);
     } elseif (strstr($name, 'iva')) {
         $data = Formatter::bool_format($field);
     } elseif (strstr($name, 'discrimina')) {
         $data = Formatter::bool_format($field);
     } elseif (is_numeric($field)) {
         $data = Formatter::number_format($field);
     }
     return $data;
 }
开发者ID:BGCX261,项目名称:zonda-sistema-gestion-web-svn-to-git,代码行数:16,代码来源:tabla_tipos_facturas.php

示例2: mostrar_filas

 public function mostrar_filas()
 {
     $toggle = 0;
     $result = parent::get_detalle();
     $articulos = new Articulos();
     print '<tbody>';
     while ($row = mysql_fetch_array($result)) {
         print '<tr class="';
         $toggle++ % 2 == 0 ? print 'even' : (print 'odd');
         print '">';
         print '<td>' . Formatter::code_format($row[2]) . '</td>';
         print '<td>' . $articulos->get_articulo_descripcion($row[2]) . '</td>';
         print '<td align="right">' . Formatter::number_format($row[3]) . '</td>';
         print '</tr>';
     }
     print '</tbody>';
 }
开发者ID:BGCX261,项目名称:zonda-sistema-gestion-web-svn-to-git,代码行数:17,代码来源:detalle_pedido.php

示例3: Ventas

include_once 'include/campo_decimal.php';
include_once 'include/boton.php';
include_once 'include/boton_flat.php';
include_once 'include/table_handler.php';
include_once 'include/tabla.php';
include_once 'include/fondos/fondos.php';
include_once 'include/ventas/ventas.php';
include_once 'include/clientes/clientes.php';
include_once 'include/url_util.php';
include_once 'include/formatter.php';
$ventas = new Ventas();
$venta = $ventas->get_row($_REQUEST['codigo']);
$url = new UrlUtil();
$formulario = new Formulario();
$formulario->set_action_uri($url->get_uri() . '&action=grabar_pago');
$campo_codigo = new Campo('codigo', Formatter::code_format($venta[0]), 'Código de la operación', 'text');
$campo_codigo->set_disabled();
$campo_fecha = new Campo('fecha', Formatter::datetime_format($venta[2]), 'Fecha de emisión:', 'text');
$campo_fecha->set_disabled();
$clientes = new Clientes();
$campo_cliente = new CampoOculto('cliente', $venta[3]);
$campo_razon_cliente = new Campo('cliente', $clientes->get_field(1, $venta[3]), 'Cliente:', 'text');
$campo_razon_cliente->set_disabled();
$campo_monto_factura = new Campo('monto_fac', $venta[6], 'Monto de la factura:', 'text');
$campo_monto_factura->set_disabled();
$campo_saldo_factura = new Campo('saldo_fac', $venta[7], 'Saldo de la factura:', 'text');
$campo_saldo_factura->set_disabled();
$monto = '0';
if (isset($monto_cuota)) {
    $monto = $monto_cuota;
}
开发者ID:BGCX261,项目名称:zonda-sistema-gestion-web-svn-to-git,代码行数:31,代码来源:form_pago.php


注:本文中的Formatter::code_format方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。