本文整理汇总了PHP中fs_var::array_save方法的典型用法代码示例。如果您正苦于以下问题:PHP fs_var::array_save方法的具体用法?PHP fs_var::array_save怎么用?PHP fs_var::array_save使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类fs_var
的用法示例。
在下文中一共展示了fs_var::array_save方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: private_core
protected function private_core()
{
/// ¿El usuario tiene permiso para eliminar en esta página?
$this->allow_delete = $this->user->allow_delete_on(__CLASS__);
$this->share_extensions();
$this->estado = new estado_sat();
/// leemos la API key de google maps de la base de datos o del formulario
$fsvar = new fs_var();
if (isset($_POST['maps_api_key'])) {
$this->maps_api_key = $_POST['maps_api_key'];
$fsvar->simple_save('maps_api_key', $this->maps_api_key);
} else {
$this->maps_api_key = $fsvar->simple_get('maps_api_key');
}
/// cargamos la configuración
$this->sat_setup = $fsvar->array_get(array('sat_col_modelo' => 0, 'sat_col_posicion' => 0, 'sat_col_accesorios' => 0, 'sat_col_prioridad' => 0, 'sat_col_fecha' => 1, 'sat_col_fechaini' => 0, 'sat_col_fechafin' => 0), FALSE);
if (isset($_POST['sat_setup'])) {
$this->sat_setup['sat_col_modelo'] = isset($_POST['col_modelo']) ? 1 : 0;
$this->sat_setup['sat_col_posicion'] = isset($_POST['col_posicion']) ? 1 : 0;
$this->sat_setup['sat_col_accesorios'] = isset($_POST['col_accesorios']) ? 1 : 0;
$this->sat_setup['sat_col_prioridad'] = isset($_POST['col_prioridad']) ? 1 : 0;
$this->sat_setup['sat_col_fecha'] = isset($_POST['col_fecha']) ? 1 : 0;
$this->sat_setup['sat_col_fechaini'] = isset($_POST['col_fechaini']) ? 1 : 0;
$this->sat_setup['sat_col_fechafin'] = isset($_POST['col_fechafin']) ? 1 : 0;
if ($fsvar->array_save($this->sat_setup)) {
$this->new_message('Datos guardados correctamente.');
} else {
$this->new_error_msg('Error al guardar los datos.');
}
} else {
if (isset($_GET['delete_estado'])) {
$estado = $this->estado->get($_GET['delete_estado']);
if ($estado) {
if ($estado->delete()) {
$this->new_message('Estado eliminado correctamente.');
} else {
$this->new_error_msg('Error al eliminar el estado.');
}
} else {
$this->new_error_msg('Estado no encontrado.');
}
} else {
if (isset($_POST['id_estado'])) {
$estado = $this->estado->get($_POST['id_estado']);
if (!$estado) {
$estado = new estado_sat();
$estado->id = intval($_POST['id_estado']);
}
$estado->descripcion = $_POST['descripcion'];
$estado->color = $_POST['color'];
$estado->activo = isset($_POST['activo']);
if ($estado->save()) {
$this->new_message('Estado guardado correctamente.');
} else {
$this->new_error_msg('Error al guardar el estado.');
}
}
}
}
}
示例2: private_core
protected function private_core()
{
$this->grupo = new grupo_clientes();
/// cargamos la configuración
$fsvar = new fs_var();
$this->nuevocli_setup = $fsvar->array_get(array('nuevocli_cifnif_req' => 0, 'nuevocli_direccion' => 1, 'nuevocli_direccion_req' => 0, 'nuevocli_codpostal' => 1, 'nuevocli_codpostal_req' => 0, 'nuevocli_pais' => 0, 'nuevocli_pais_req' => 0, 'nuevocli_provincia' => 1, 'nuevocli_provincia_req' => 0, 'nuevocli_ciudad' => 1, 'nuevocli_ciudad_req' => 0, 'nuevocli_telefono1' => 0, 'nuevocli_telefono1_req' => 0, 'nuevocli_telefono2' => 0, 'nuevocli_telefono2_req' => 0, 'nuevocli_codgrupo' => ''), FALSE);
if (isset($_POST['setup'])) {
$this->nuevocli_setup['nuevocli_cifnif_req'] = isset($_POST['nuevocli_cifnif_req']) ? 1 : 0;
$this->nuevocli_setup['nuevocli_direccion'] = isset($_POST['nuevocli_direccion']) ? 1 : 0;
$this->nuevocli_setup['nuevocli_direccion_req'] = isset($_POST['nuevocli_direccion_req']) ? 1 : 0;
$this->nuevocli_setup['nuevocli_codpostal'] = isset($_POST['nuevocli_codpostal']) ? 1 : 0;
$this->nuevocli_setup['nuevocli_codpostal_req'] = isset($_POST['nuevocli_codpostal_req']) ? 1 : 0;
$this->nuevocli_setup['nuevocli_pais'] = isset($_POST['nuevocli_pais']) ? 1 : 0;
$this->nuevocli_setup['nuevocli_pais_req'] = isset($_POST['nuevocli_pais_req']) ? 1 : 0;
$this->nuevocli_setup['nuevocli_provincia'] = isset($_POST['nuevocli_provincia']) ? 1 : 0;
$this->nuevocli_setup['nuevocli_provincia_req'] = isset($_POST['nuevocli_provincia_req']) ? 1 : 0;
$this->nuevocli_setup['nuevocli_ciudad'] = isset($_POST['nuevocli_ciudad']) ? 1 : 0;
$this->nuevocli_setup['nuevocli_ciudad_req'] = isset($_POST['nuevocli_ciudad_req']) ? 1 : 0;
$this->nuevocli_setup['nuevocli_telefono1'] = isset($_POST['nuevocli_telefono1']) ? 1 : 0;
$this->nuevocli_setup['nuevocli_telefono1_req'] = isset($_POST['nuevocli_telefono1_req']) ? 1 : 0;
$this->nuevocli_setup['nuevocli_telefono2'] = isset($_POST['nuevocli_telefono2']) ? 1 : 0;
$this->nuevocli_setup['nuevocli_telefono2_req'] = isset($_POST['nuevocli_telefono2_req']) ? 1 : 0;
$this->nuevocli_setup['nuevocli_codgrupo'] = $_POST['nuevocli_codgrupo'];
if ($fsvar->array_save($this->nuevocli_setup)) {
$this->new_message('Datos guardados correctamente.');
} else {
$this->new_error_msg('Error al guardar los datos.');
}
}
}
示例3: process
protected function process()
{
$fsvar = new fs_var();
$cron_vars = $fsvar->array_get(array('cron_exists' => FALSE, 'cron_lock' => FALSE, 'cron_error' => FALSE));
if (isset($_GET['fix'])) {
$cron_vars['cron_error'] = FALSE;
$cron_vars['cron_lock'] = FALSE;
$fsvar->array_save($cron_vars);
}
if (!$cron_vars['cron_exists']) {
$this->new_advice('Nunca se ha ejecutado el <a href="http://www.facturascripts.com/comm3/index.php?page=community_item&tag=cron" target="_blank">cron</a>,' . ' te perderás algunas características interesantes de FacturaScripts.');
} else {
if ($cron_vars['cron_error']) {
$this->new_error_msg('Parece que ha habido un error con el cron. Haz clic <a href="' . $this->url() . '&fix=TRUE">aquí</a> para corregirlo.');
} else {
if ($cron_vars['cron_lock']) {
$this->new_advice('Se está ejecutando el cron.');
}
}
}
if (isset($_GET['clean_cache'])) {
/// borramos los archivos php del directorio tmp
foreach (scandir(getcwd() . '/tmp') as $f) {
if (substr($f, -4) == '.php') {
unlink('tmp/' . $f);
}
}
if ($this->cache->clean()) {
$this->new_message("Cache limpiada correctamente.");
}
}
}
示例4: private_core
protected function private_core()
{
$this->share_extensions();
/// ¿El usuario tiene permiso para eliminar en esta página?
$this->allow_delete = $this->user->admin;
/**
* Cargamos las variables del cron
*/
$fsvar = new fs_var();
$cron_vars = $fsvar->array_get(array('cron_exists' => FALSE, 'cron_lock' => FALSE, 'cron_error' => FALSE));
if (isset($_GET['fix'])) {
$cron_vars['cron_error'] = FALSE;
$cron_vars['cron_lock'] = FALSE;
$fsvar->array_save($cron_vars);
} else {
if (isset($_GET['clean_cache'])) {
/// borramos los archivos php del directorio tmp
foreach (scandir(getcwd() . '/tmp/' . FS_TMP_NAME) as $f) {
if (substr($f, -4) == '.php') {
unlink('tmp/' . FS_TMP_NAME . $f);
}
}
if ($this->cache->clean()) {
$this->new_message("Cache limpiada correctamente.");
}
} else {
if (!$cron_vars['cron_exists']) {
$this->new_advice('Nunca se ha ejecutado el' . ' <a href="http://www.facturascripts.com/comm3/index.php?page=community_item&tag=cron" target="_blank">cron</a>,' . ' te perderás algunas características interesantes de FacturaScripts.');
} else {
if ($cron_vars['cron_error']) {
$this->new_error_msg('Parece que ha habido un error con el cron. Haz clic <a href="' . $this->url() . '&fix=TRUE">aquí</a> para corregirlo.');
} else {
if ($cron_vars['cron_lock']) {
$this->new_advice('Se está ejecutando el cron.');
}
}
}
}
}
$this->b_alerta = '';
$this->b_desde = '';
$this->b_detalle = '';
$this->b_hasta = '';
$this->b_ip = '';
$this->b_tipo = '';
$this->b_usuario = '';
if (isset($_POST['b_desde'])) {
$this->b_alerta = isset($_POST['b_alerta']);
$this->b_desde = $_POST['b_desde'];
$this->b_detalle = $_POST['b_detalle'];
$this->b_hasta = $_POST['b_hasta'];
$this->b_ip = $_POST['b_ip'];
$this->b_tipo = $_POST['b_tipo'];
$this->b_usuario = $_POST['b_usuario'];
}
$this->buscar_en_log();
$this->modulos_eneboo();
}
示例5: private_core
protected function private_core()
{
/// ¿El usuario tiene permiso para eliminar en esta página?
$this->allow_delete = $this->user->admin;
/**
* Cargamos las variables del cron
*/
$fsvar = new fs_var();
$cron_vars = $fsvar->array_get(array('cron_exists' => FALSE, 'cron_lock' => FALSE, 'cron_error' => FALSE));
if (isset($_GET['fix'])) {
$cron_vars['cron_error'] = FALSE;
$cron_vars['cron_lock'] = FALSE;
$fsvar->array_save($cron_vars);
} else {
if (isset($_GET['clean_cache'])) {
/// borramos los archivos php del directorio tmp
foreach (scandir(getcwd() . '/tmp') as $f) {
if (substr($f, -4) == '.php') {
unlink('tmp/' . $f);
}
}
if ($this->cache->clean()) {
$this->new_message("Cache limpiada correctamente.");
}
} else {
if (!$cron_vars['cron_exists']) {
$this->new_advice('Nunca se ha ejecutado el <a href="http://www.facturascripts.com/comm3/index.php?page=community_item&tag=cron" target="_blank">cron</a>,' . ' te perderás algunas características interesantes de FacturaScripts.');
} else {
if ($cron_vars['cron_error']) {
$this->new_error_msg('Parece que ha habido un error con el cron. Haz clic <a href="' . $this->url() . '&fix=TRUE">aquí</a> para corregirlo.');
} else {
if ($cron_vars['cron_lock']) {
$this->new_advice('Se está ejecutando el cron.');
}
}
}
}
}
if (isset($_REQUEST['json'])) {
/// desactivamos el motor de plantillas
$this->template = FALSE;
$fslog = new fs_log();
echo json_encode($fslog->all(0, 10000));
} else {
$this->share_extensions();
}
}
示例6: private_core
protected function private_core()
{
$this->check_menu();
$this->share_extension();
$this->colores = array("gris", "rojo", "verde", "azul", "naranja", "amarillo", "marron", "blanco");
/// cargamos la configuración
$fsvar = new fs_var();
$this->factura_detallada_setup = $fsvar->array_get(array('f_detallada_color' => 'azul'), FALSE);
if (isset($_POST['factura_detallada_setup'])) {
$this->factura_detallada_setup['f_detallada_color'] = $_POST['color'];
if ($fsvar->array_save($this->factura_detallada_setup)) {
$this->new_message('Datos guardados correctamente.');
} else {
$this->new_error_msg('Error al guardar los datos.');
}
}
}
示例7: private_core
protected function private_core()
{
$this->check_menu();
$fsvar = new fs_var();
$this->inme_config = array('inme_analytics' => '', 'inme_modrewrite' => '0');
$this->inme_config = $fsvar->array_get($this->inme_config, FALSE);
if (isset($_POST['analytics'])) {
$this->inme_config['inme_analytics'] = $_POST['analytics'];
$this->inme_config['inme_modrewrite'] = $_POST['modrewrite'];
$this->empresa->web = $_POST['web'];
$this->empresa->save();
if ($fsvar->array_save($this->inme_config)) {
$this->new_message('Datos guardados correctamente.');
} else {
$this->new_error_msg('Error al guardar los datos.');
}
} else {
if (isset($_GET['htaccess'])) {
$this->save_htaccess();
}
}
}
示例8: process
protected function process()
{
$this->show_fs_toolbar = FALSE;
$fsvar = new fs_var();
$cron_vars = $fsvar->array_get(array('cron_exists' => FALSE, 'cron_lock' => FALSE, 'cron_error' => FALSE));
if (isset($_GET['fix'])) {
$cron_vars['cron_error'] = FALSE;
$cron_vars['cron_lock'] = FALSE;
$fsvar->array_save($cron_vars);
}
if (!$cron_vars['cron_exists']) {
$this->new_advice('Nunca se ha ejecutado el cron, te perderás algunas características interesantes de FacturaScripts.');
} else {
if ($cron_vars['cron_error']) {
$this->new_error_msg('Parece que ha habido un error con el cron. Haz clic <a href="' . $this->url() . '&fix=TRUE">aquí</a> para corregirlo.');
} else {
if ($cron_vars['cron_lock']) {
$this->new_advice('Se está ejecutando el cron.');
}
}
}
if (isset($_GET['clean_cache'])) {
/// borramos los archivos php del directorio tmp
foreach (scandir(getcwd() . '/tmp') as $f) {
if (substr($f, -4) == '.php') {
unlink('tmp/' . $f);
}
}
if ($this->cache->clean()) {
$this->new_message("Cache limpiada correctamente.");
}
}
if (FS_LCD != '') {
$fpt = new fs_printer(FS_LCD);
$fpt->add(chr(12) . $fpt->center_text('The cake is', 20));
$fpt->add($fpt->center_text('a lie!', 20));
$fpt->imprimir();
}
}
示例9: private_core
protected function private_core()
{
/// ¿El usuario tiene permiso para eliminar en esta página?
$this->allow_delete = $this->user->allow_delete_on(__CLASS__);
$this->check_menu();
$this->share_extensions();
$this->estado = new estado_servicio();
/// cargamos la configuración
$fsvar = new fs_var();
$this->servicios_setup = $fsvar->array_get(array('servicios_diasfin' => 10, 'servicios_material' => 0, 'servicios_mostrar_material' => 0, 'servicios_material_estado' => 0, 'servicios_mostrar_material_estado' => 0, 'servicios_accesorios' => 0, 'servicios_mostrar_accesorios' => 0, 'servicios_descripcion' => 0, 'servicios_mostrar_descripcion' => 0, 'servicios_solucion' => 0, 'servicios_mostrar_solucion' => 0, 'servicios_fechafin' => 0, 'servicios_mostrar_fechafin' => 0, 'servicios_fechainicio' => 0, 'servicios_mostrar_fechainicio' => 0, 'servicios_mostrar_garantia' => 0, 'servicios_garantia' => 0, 'servicios_condiciones' => "Condiciones del deposito:\nLos presupuestos realizados tienen una" . " validez de 15 días.\nUna vez avisado al cliente para que recoja el producto este dispondrá" . " de un plazo máximo de 2 meses para recogerlo, de no ser así y no haber aviso por parte del" . " cliente se empezará a cobrar 1 euro al día por gastos de almacenaje.\nLos accesorios y" . " productos externos al equipo no especificados en este documento no podrán ser reclamados en" . " caso de disconformidad con el técnico.", 'st_servicio' => "Servicio", 'st_servicios' => "Servicios", 'st_material' => "Material", 'st_material_estado' => "Estado del material entregado", 'st_accesorios' => "Accesorios que entrega", 'st_descripcion' => "Descripción de la averia", 'st_solucion' => "Solución", 'st_fechainicio' => "Fecha de inicio", 'st_fechafin' => "Fecha de finalización", 'st_garantia' => "Garantía", 'cal_inicio' => "09:00", 'cal_fin' => "20:00", 'cal_intervalo' => "30"), FALSE);
if (isset($_POST['servicios_setup'])) {
$this->servicios_setup['servicios_diasfin'] = intval($_POST['diasfin']);
$this->servicios_setup['servicios_material'] = isset($_POST['servicios_material']) ? 1 : 0;
$this->servicios_setup['servicios_material_estado'] = isset($_POST['servicios_material_estado']) ? 1 : 0;
$this->servicios_setup['servicios_accesorios'] = isset($_POST['servicios_accesorios']) ? 1 : 0;
$this->servicios_setup['servicios_descripcion'] = isset($_POST['servicios_descripcion']) ? 1 : 0;
$this->servicios_setup['servicios_solucion'] = isset($_POST['servicios_solucion']) ? 1 : 0;
$this->servicios_setup['servicios_fechafin'] = isset($_POST['servicios_fechafin']) ? 1 : 0;
$this->servicios_setup['servicios_fechainicio'] = isset($_POST['servicios_fechainicio']) ? 1 : 0;
$this->servicios_setup['servicios_garantia'] = isset($_POST['servicios_garantia']) ? 1 : 0;
$this->servicios_setup['servicios_mostrar_material'] = isset($_POST['servicios_mostrar_material']) ? 1 : 0;
$this->servicios_setup['servicios_mostrar_material_estado'] = isset($_POST['servicios_mostrar_material_estado']) ? 1 : 0;
$this->servicios_setup['servicios_mostrar_accesorios'] = isset($_POST['servicios_mostrar_accesorios']) ? 1 : 0;
$this->servicios_setup['servicios_mostrar_descripcion'] = isset($_POST['servicios_mostrar_descripcion']) ? 1 : 0;
$this->servicios_setup['servicios_mostrar_solucion'] = isset($_POST['servicios_mostrar_solucion']) ? 1 : 0;
$this->servicios_setup['servicios_mostrar_fechafin'] = isset($_POST['servicios_mostrar_fechafin']) ? 1 : 0;
$this->servicios_setup['servicios_mostrar_fechainicio'] = isset($_POST['servicios_mostrar_fechainicio']) ? 1 : 0;
$this->servicios_setup['servicios_mostrar_garantia'] = isset($_POST['servicios_mostrar_garantia']) ? 1 : 0;
$this->servicios_setup['servicios_condiciones'] = $fsvar->no_html($_POST['condiciones']);
$this->servicios_setup['st_servicio'] = $_POST['st_servicio'];
$this->servicios_setup['st_servicios'] = $_POST['st_servicios'];
$this->servicios_setup['st_material'] = $_POST['st_material'];
$this->servicios_setup['st_material_estado'] = $_POST['st_material_estado'];
$this->servicios_setup['st_accesorios'] = $_POST['st_accesorios'];
$this->servicios_setup['st_descripcion'] = $_POST['st_descripcion'];
$this->servicios_setup['st_solucion'] = $_POST['st_solucion'];
$this->servicios_setup['st_fechainicio'] = $_POST['st_fechainicio'];
$this->servicios_setup['st_fechafin'] = $_POST['st_fechafin'];
$this->servicios_setup['st_garantia'] = $_POST['st_garantia'];
$this->servicios_setup['cal_inicio'] = $_POST['cal_inicio'];
$this->servicios_setup['cal_fin'] = $_POST['cal_fin'];
$this->servicios_setup['cal_intervalo'] = $_POST['cal_intervalo'];
if ($fsvar->array_save($this->servicios_setup)) {
$this->new_message('Datos guardados correctamente.');
} else {
$this->new_error_msg('Error al guardar los datos.');
}
} else {
if (isset($_GET['delete_estado'])) {
$estado = $this->estado->get($_GET['delete_estado']);
if ($estado) {
if ($estado->delete()) {
$this->new_message('Estado eliminado correctamente.');
} else {
$this->new_error_msg('Error al eliminar el estado.');
}
} else {
$this->new_error_msg('Estado no encontrado.');
}
} else {
if (isset($_POST['id_estado'])) {
$estado = $this->estado->get($_POST['id_estado']);
if (!$estado) {
$estado = new estado_servicio();
$estado->id = intval($_POST['id_estado']);
}
$estado->descripcion = $_POST['descripcion'];
$estado->color = $_POST['color'];
$estado->activo = isset($_POST['activo']);
$estado->albaran = isset($_POST['albaran']);
if ($estado->save()) {
$this->new_message('Estado guardado correctamente.');
} else {
$this->new_error_msg('Error al guardar el estado.');
}
}
}
}
}
示例10: private_core
protected function private_core()
{
$this->almacen = new almacen();
$this->cuenta_banco = new cuenta_banco();
$this->divisa = new divisa();
$this->ejercicio = new ejercicio();
$this->forma_pago = new forma_pago();
$this->serie = new serie();
$this->pais = new pais();
$fsvar = new fs_var();
/// obtenemos los datos de configuración del email
$this->mail = array('mail_host' => 'smtp.gmail.com', 'mail_port' => '465', 'mail_enc' => 'ssl', 'mail_user' => '', 'mail_low_security' => FALSE);
$this->mail = $fsvar->array_get($this->mail, FALSE);
/// obtenemos los datos de configuración de impresión
$this->impresion = array('print_ref' => '1', 'print_dto' => '1', 'print_alb' => '0', 'print_formapago' => '1');
$this->impresion = $fsvar->array_get($this->impresion, FALSE);
if (isset($_POST['cifnif'])) {
/// guardamos los datos de la empresa
$this->empresa->nombre = $_POST['nombre'];
$this->empresa->nombrecorto = $_POST['nombrecorto'];
$this->empresa->cifnif = $_POST['cifnif'];
$this->empresa->administrador = $_POST['administrador'];
$this->empresa->codpais = $_POST['codpais'];
$this->empresa->provincia = $_POST['provincia'];
$this->empresa->ciudad = $_POST['ciudad'];
$this->empresa->direccion = $_POST['direccion'];
$this->empresa->codpostal = $_POST['codpostal'];
$this->empresa->telefono = $_POST['telefono'];
$this->empresa->fax = $_POST['fax'];
$this->empresa->web = $_POST['web'];
$this->empresa->email = $_POST['email'];
$this->empresa->email_firma = $_POST['email_firma'];
$this->empresa->email_password = $_POST['email_password'];
$this->empresa->lema = $_POST['lema'];
$this->empresa->horario = $_POST['horario'];
$this->empresa->contintegrada = isset($_POST['contintegrada']);
$this->empresa->codejercicio = $_POST['codejercicio'];
$this->empresa->codserie = $_POST['codserie'];
$this->empresa->coddivisa = $_POST['coddivisa'];
$this->empresa->codpago = $_POST['codpago'];
$this->empresa->codalmacen = $_POST['codalmacen'];
$this->empresa->pie_factura = $_POST['pie_factura'];
$this->empresa->recequivalencia = isset($_POST['recequivalencia']);
if ($this->empresa->save()) {
/// guardamos las opciones por defecto de almacén y forma de pago
$this->save_codalmacen($_POST['codalmacen']);
$this->save_codpago($_POST['codpago']);
$this->new_message('Datos guardados correctamente.');
if (!$this->empresa->contintegrada) {
$this->new_message('¿Quieres activar la <b>contabilidad integrada</b>?' . ' Haz clic en la sección <a href="#facturacion">facturación</a>.');
}
$step = $fsvar->simple_get('install_step');
if ($step == 2) {
$step = 3;
$fsvar->simple_save('install_step', $step);
}
if ($step == 3 and $this->empresa->contintegrada) {
$this->new_message('Recuerda que tienes que <a href="index.php?page=contabilidad_ejercicio&cod=' . $this->empresa->codejercicio . '">importar los datos del ejercicio</a>.');
}
} else {
$this->new_error_msg('Error al guardar los datos.');
}
/// guardamos los datos del email
if (isset($_POST['mail_host'])) {
$this->mail['mail_host'] = 'smtp.gmail.com';
if ($_POST['mail_host'] != '') {
$this->mail['mail_host'] = $_POST['mail_host'];
}
$this->mail['mail_port'] = '465';
if ($_POST['mail_port'] != '') {
$this->mail['mail_port'] = $_POST['mail_port'];
}
$this->mail['mail_enc'] = strtolower($_POST['mail_enc']);
$this->mail['mail_user'] = $_POST['mail_user'];
$this->mail['mail_low_security'] = isset($_POST['mail_low_security']);
$fsvar->array_save($this->mail);
$this->mail_test();
}
/// guardamos los datos de impresión
$this->impresion['print_ref'] = isset($_POST['print_ref']) ? 1 : 0;
$this->impresion['print_dto'] = isset($_POST['print_dto']) ? 1 : 0;
$this->impresion['print_alb'] = isset($_POST['print_alb']) ? 1 : 0;
$this->impresion['print_formapago'] = isset($_POST['print_formapago']) ? 1 : 0;
$fsvar->array_save($this->impresion);
} else {
if (isset($_POST['nombre'])) {
/// guardamos solamente lo básico, ya que facturacion_base no está activado
$this->empresa->nombre = $_POST['nombre'];
$this->empresa->nombrecorto = $_POST['nombrecorto'];
$this->empresa->web = $_POST['web'];
$this->empresa->email = $_POST['email'];
$this->empresa->email_firma = $_POST['email_firma'];
$this->empresa->email_password = $_POST['email_password'];
if ($this->empresa->save()) {
$this->new_message('Datos guardados correctamente.');
} else {
$this->new_error_msg('Error al guardar los datos.');
}
/// guardamos los datos del email
if (isset($_POST['mail_host'])) {
//.........这里部分代码省略.........
示例11: process
protected function process()
{
$this->mostrar = 'pedidos';
if (isset($_REQUEST['mostrar'])) {
$this->mostrar = $_REQUEST['mostrar'];
}
$this->offset = 0;
if (isset($_REQUEST['offset'])) {
$this->offset = intval($_REQUEST['offset']);
}
$this->almacen = new almacen();
$this->conectado = FALSE;
$this->impuesto = new impuesto();
$this->pedidos = array();
$this->productos = array();
$this->serie = new serie();
$fsv = new fs_var();
$this->setup = $fsv->array_get(array('wooc_url' => FALSE, 'wooc_ck' => FALSE, 'wooc_cs' => FALSE, 'wooc_serie' => FALSE, 'wooc_alm' => FALSE, 'wooc_imp' => FALSE));
$this->wcapi = FALSE;
if (isset($_POST['wooc_ck'])) {
$this->setup['wooc_url'] = $_POST['wooc_url'];
$this->setup['wooc_ck'] = $_POST['wooc_ck'];
$this->setup['wooc_cs'] = $_POST['wooc_cs'];
$this->setup['wooc_alm'] = $_POST['wooc_alm'];
$this->setup['wooc_serie'] = $_POST['wooc_serie'];
$this->setup['wooc_imp'] = $_POST['wooc_imp'];
if ($fsv->array_save($this->setup)) {
$this->new_message('Datos guardados correctamente.');
} else {
$this->new_error_msg('Imposible guardar los datos.');
}
}
if (!function_exists('curl_init')) {
$this->new_error_msg('No se encuentra la extensión php-curl, tienes que instalarla.');
} else {
if ($this->setup['wooc_url']) {
$this->wcapi = new WC_API_Client($this->setup['wooc_ck'], $this->setup['wooc_cs'], $this->setup['wooc_url']);
$this->total_pedidos = $this->get_total_pedidos();
$this->total_productos = $this->get_total_productos();
if (isset($_GET['sync'])) {
$this->productos = $this->get_productos();
$this->pedidos = $this->get_pedidos();
$this->sync();
} else {
if (isset($_GET['alb'])) {
$data = $this->db->select("SELECT * FROM albaranescli WHERE numero2 = " . $this->empresa->var2str('WC#' . $_GET['alb']) . ";");
if ($data) {
$albaran = new albaran_cliente($data[0]);
header('Location: ' . $albaran->url());
} else {
$this->new_error_msg('Albarán no encontrado. Pulsa el botón importar.');
}
$this->pedidos = $this->get_pedidos();
} else {
if ($this->mostrar == 'articulos') {
$this->productos = $this->get_productos();
} else {
$this->pedidos = $this->get_pedidos();
}
}
}
}
}
}
示例12: empresa
if ($cron_vars['cron_lock']) {
echo "ERROR: Ya hay un cron en ejecución. Si crees que es un error," . " ve a Admin > Información del sistema para solucionar el problema.";
/// marcamos el error en el cron
$cron_vars['cron_error'] = 'TRUE';
} else {
/**
* He detectado que a veces, con el plugin kiwimaru,
* el proceso cron tarda más de una hora, y por tanto se encadenan varios
* procesos a la vez. Para evitar esto, uso la entrada cron_lock.
* Además uso la entrada cron_exists para marcar que alguna vez se ha ejecutado el cron,
* y cron_error por si hubiese algún fallo.
*/
$cron_vars['cron_lock'] = 'TRUE';
$cron_vars['cron_exists'] = 'TRUE';
/// guardamos las variables
$fsvar->array_save($cron_vars);
/// establecemos los elementos por defecto
$fs_default_items = new fs_default_items();
$empresa = new empresa();
$fs_default_items->set_codalmacen($empresa->codalmacen);
$fs_default_items->set_coddivisa($empresa->coddivisa);
$fs_default_items->set_codejercicio($empresa->codejercicio);
$fs_default_items->set_codpago($empresa->codpago);
$fs_default_items->set_codpais($empresa->codpais);
$fs_default_items->set_codserie($empresa->codserie);
/*
* Ahora ejecutamos el cron de cada plugin que tenga cron y esté activado
*/
foreach ($GLOBALS['plugins'] as $plugin) {
if (file_exists('plugins/' . $plugin . '/cron.php')) {
echo "\n***********************\nEjecutamos el cron.php del plugin " . $plugin . "\n";
示例13: save
/**
* Guarda los datos en la base de datos
* @return boolean
*/
public function save()
{
if ($this->test()) {
$this->clean_cache();
/// guardamos la configuración de email
$fsvar = new \fs_var();
$fsvar->array_save($this->email_config);
if ($this->exists()) {
$sql = "UPDATE " . $this->table_name . " SET nombre = " . $this->var2str($this->nombre) . ", nombrecorto = " . $this->var2str($this->nombrecorto) . ", cifnif = " . $this->var2str($this->cifnif) . ", codedi = " . $this->var2str($this->codedi) . ", administrador = " . $this->var2str($this->administrador) . ", direccion = " . $this->var2str($this->direccion) . ", codpostal = " . $this->var2str($this->codpostal) . ", ciudad = " . $this->var2str($this->ciudad) . ", provincia = " . $this->var2str($this->provincia) . ", apartado = " . $this->var2str($this->apartado) . ", codpais = " . $this->var2str($this->codpais) . ", telefono = " . $this->var2str($this->telefono) . ", fax = " . $this->var2str($this->fax) . ", email = " . $this->var2str($this->email) . ", web = " . $this->var2str($this->web) . ", codejercicio = " . $this->var2str($this->codejercicio) . ", coddivisa = " . $this->var2str($this->coddivisa) . ", codpago = " . $this->var2str($this->codpago) . ", codalmacen = " . $this->var2str($this->codalmacen) . ", codserie = " . $this->var2str($this->codserie) . ", recequivalencia = " . $this->var2str($this->recequivalencia) . ", contintegrada = " . $this->var2str($this->contintegrada) . ", stockpedidos = " . $this->var2str($this->stockpedidos) . ", xid = " . $this->var2str($this->xid) . ", lema = " . $this->var2str($this->lema) . ", horario = " . $this->var2str($this->horario) . ", pie_factura = " . $this->var2str($this->pie_factura) . ", inicioact = " . $this->var2str($this->inicio_actividad) . ", regimeniva = " . $this->var2str($this->regimeniva) . " WHERE id = " . $this->var2str($this->id) . ";";
return $this->db->exec($sql);
} else {
$sql = "INSERT INTO " . $this->table_name . " (stockpedidos,contintegrada,recequivalencia,codserie,\n codalmacen,codpago,coddivisa,codejercicio,web,email,fax,telefono,\n codpais,apartado,provincia,ciudad,codpostal,direccion,administrador,codedi,cifnif,nombre,\n nombrecorto,lema,horario,pie_factura,inicioact,regimeniva) VALUES \n (" . $this->var2str($this->stockpedidos) . "," . $this->var2str($this->contintegrada) . "," . $this->var2str($this->recequivalencia) . "," . $this->var2str($this->codserie) . "," . $this->var2str($this->codalmacen) . "," . $this->var2str($this->codpago) . "," . $this->var2str($this->coddivisa) . "," . $this->var2str($this->codejercicio) . "," . $this->var2str($this->web) . "," . $this->var2str($this->email) . "," . $this->var2str($this->fax) . "," . $this->var2str($this->telefono) . "," . $this->var2str($this->codpais) . "," . $this->var2str($this->apartado) . "," . $this->var2str($this->provincia) . "," . $this->var2str($this->ciudad) . "," . $this->var2str($this->codpostal) . "," . $this->var2str($this->direccion) . "," . $this->var2str($this->administrador) . "," . $this->var2str($this->codedi) . "," . $this->var2str($this->cifnif) . "," . $this->var2str($this->nombre) . "," . $this->var2str($this->nombrecorto) . "," . $this->var2str($this->lema) . "," . $this->var2str($this->horario) . "," . $this->var2str($this->pie_factura) . "," . $this->var2str($this->inicio_actividad) . "," . $this->var2str($this->regimeniva) . ");";
if ($this->db->exec($sql)) {
$this->id = $this->db->lastval();
return TRUE;
} else {
return FALSE;
}
}
} else {
return FALSE;
}
}
示例14: process
protected function process()
{
$this->almacen = new almacen();
$this->cuenta_banco = new cuenta_banco();
$this->divisa = new divisa();
$this->ejercicio = new ejercicio();
$this->forma_pago = new forma_pago();
$this->serie = new serie();
$this->pais = new pais();
/// obtenemos los datos de configuración del email
$this->mail = array('mail_host' => 'smtp.gmail.com', 'mail_port' => '465', 'mail_enc' => 'ssl', 'mail_user' => '');
$fsvar = new fs_var();
$this->mail = $fsvar->array_get($this->mail, FALSE);
if (isset($_POST['nombre'])) {
/*
* Guardamos los elementos por defecto
*/
$this->save_codalmacen($_POST['codalmacen']);
$this->save_coddivisa($_POST['coddivisa']);
$this->save_codejercicio($_POST['codejercicio']);
$this->save_codpago($_POST['codpago']);
$this->save_codserie($_POST['codserie']);
$this->save_codpais($_POST['codpais']);
/// guardamos los datos de la empresa
$this->empresa->nombre = $_POST['nombre'];
$this->empresa->nombrecorto = $_POST['nombrecorto'];
$this->empresa->cifnif = $_POST['cifnif'];
$this->empresa->administrador = $_POST['administrador'];
$this->empresa->codpais = $_POST['codpais'];
$this->empresa->provincia = $_POST['provincia'];
$this->empresa->ciudad = $_POST['ciudad'];
$this->empresa->direccion = $_POST['direccion'];
$this->empresa->codpostal = $_POST['codpostal'];
$this->empresa->telefono = $_POST['telefono'];
$this->empresa->fax = $_POST['fax'];
$this->empresa->web = $_POST['web'];
$this->empresa->email = $_POST['email'];
$this->empresa->email_firma = $_POST['email_firma'];
$this->empresa->email_password = $_POST['email_password'];
$this->empresa->lema = $_POST['lema'];
$this->empresa->horario = $_POST['horario'];
$this->empresa->contintegrada = isset($_POST['contintegrada']);
$this->empresa->codejercicio = $_POST['codejercicio'];
$this->empresa->codserie = $_POST['codserie'];
$this->empresa->coddivisa = $_POST['coddivisa'];
$this->empresa->codpago = $_POST['codpago'];
$this->empresa->codalmacen = $_POST['codalmacen'];
$this->empresa->pie_factura = $_POST['pie_factura'];
$this->empresa->recequivalencia = isset($_POST['recequivalencia']);
if ($this->empresa->save()) {
$this->new_message('Datos guardados correctamente.');
$step = $fsvar->simple_get('install_step');
if ($step == 2) {
if (in_array('facturacion_base', $GLOBALS['plugins'])) {
$this->new_message('Y por último tienes que <a href="index.php?page=contabilidad_ejercicio&cod=' . $this->empresa->codejercicio . '">importar los datos del ejercicio</a>.');
}
$fsvar->simple_save('install_step', 3);
}
} else {
$this->new_error_msg('Error al guardar los datos.');
}
/// guardamos los datos del email
if (isset($_POST['mail_host'])) {
if ($_POST['mail_host'] == '') {
$this->mail['mail_host'] = 'smtp.gmail.com';
} else {
$this->mail['mail_host'] = $_POST['mail_host'];
}
if ($_POST['mail_port'] == '') {
$this->mail['mail_port'] = '465';
} else {
$this->mail['mail_port'] = $_POST['mail_port'];
}
$this->mail['mail_enc'] = strtolower($_POST['mail_enc']);
$this->mail['mail_user'] = $_POST['mail_user'];
$fsvar->array_save($this->mail);
$this->mail_test();
}
} else {
if (isset($_POST['logo'])) {
if (is_uploaded_file($_FILES['fimagen']['tmp_name'])) {
copy($_FILES['fimagen']['tmp_name'], "tmp/" . FS_TMP_NAME . "logo.png");
$this->new_message('Logotipo guardado correctamente.');
}
} else {
if (isset($_GET['delete_logo'])) {
if (file_exists('tmp/' . FS_TMP_NAME . 'logo.png')) {
unlink('tmp/' . FS_TMP_NAME . 'logo.png');
$this->new_message('Logotipo borrado correctamente.');
}
} else {
if (isset($_GET['delete_cuenta'])) {
$cuenta = $this->cuenta_banco->get($_GET['delete_cuenta']);
if ($cuenta) {
if ($cuenta->delete()) {
$this->new_message('Cuenta bancaria eliminada correctamente.');
} else {
$this->new_error_msg('Imposible eliminar la cuenta bancaria.');
}
} else {
//.........这里部分代码省略.........
示例15: process
protected function process()
{
$this->show_fs_toolbar = FALSE;
$this->almacen = new almacen();
$this->cuenta_banco = new cuenta_banco();
$this->divisa = new divisa();
$this->ejercicio = new ejercicio();
$this->forma_pago = new forma_pago();
$this->serie = new serie();
$this->pais = new pais();
/// obtenemos los datos de configuración del email
$this->mail = array('mail_host' => 'smtp.gmail.com', 'mail_port' => '465', 'mail_enc' => 'ssl', 'mail_user' => '');
$fsvar = new fs_var();
$this->mail = $fsvar->array_get($this->mail, FALSE);
if (isset($_POST['nombre'])) {
/*
* Guardamos los elementos por defecto
*/
$this->save_codalmacen($_POST['codalmacen']);
$this->save_coddivisa($_POST['coddivisa']);
$this->save_codejercicio($_POST['codejercicio']);
$this->save_codpago($_POST['codpago']);
$this->save_codserie($_POST['codserie']);
$this->save_codpais($_POST['codpais']);
/// guardamos los datos de la empresa
$this->empresa->nombre = $_POST['nombre'];
$this->empresa->nombrecorto = $_POST['nombrecorto'];
$this->empresa->cifnif = $_POST['cifnif'];
$this->empresa->administrador = $_POST['administrador'];
$this->empresa->codpais = $_POST['codpais'];
$this->empresa->provincia = $_POST['provincia'];
$this->empresa->ciudad = $_POST['ciudad'];
$this->empresa->direccion = $_POST['direccion'];
$this->empresa->codpostal = $_POST['codpostal'];
$this->empresa->telefono = $_POST['telefono'];
$this->empresa->fax = $_POST['fax'];
$this->empresa->web = $_POST['web'];
$this->empresa->email = $_POST['email'];
$this->empresa->email_firma = $_POST['email_firma'];
$this->empresa->email_password = $_POST['email_password'];
$this->empresa->lema = $_POST['lema'];
$this->empresa->horario = $_POST['horario'];
$this->empresa->contintegrada = isset($_POST['contintegrada']);
$this->empresa->codejercicio = $_POST['codejercicio'];
$this->empresa->codserie = $_POST['codserie'];
$this->empresa->coddivisa = $_POST['coddivisa'];
$this->empresa->codpago = $_POST['codpago'];
$this->empresa->codalmacen = $_POST['codalmacen'];
$this->empresa->pie_factura = $_POST['pie_factura'];
$this->empresa->recequivalencia = isset($_POST['recequivalencia']);
if ($this->empresa->save()) {
$this->new_message('Datos guardados correctamente.');
$eje0 = $this->ejercicio->get_by_fecha($this->today());
if ($eje0) {
$this->new_message('Ahora es el momento de <a href="' . $eje0->url() . '">
importar los datos del ejercicio fiscal</a>, si todavía no lo has hecho.');
}
} else {
$this->new_error_msg('Error al guardar los datos.');
}
/// guardamos los datos del email
if (isset($_POST['mail_host'])) {
if ($_POST['mail_host'] == '') {
$this->mail['mail_host'] = 'smtp.gmail.com';
} else {
$this->mail['mail_host'] = $_POST['mail_host'];
}
if ($_POST['mail_port'] == '') {
$this->mail['mail_port'] = '465';
} else {
$this->mail['mail_port'] = $_POST['mail_port'];
}
$this->mail['mail_enc'] = strtolower($_POST['mail_enc']);
$this->mail['mail_user'] = $_POST['mail_user'];
$fsvar->array_save($this->mail);
}
} else {
if (isset($_POST['logo'])) {
if (is_uploaded_file($_FILES['fimagen']['tmp_name'])) {
copy($_FILES['fimagen']['tmp_name'], "tmp/" . FS_TMP_NAME . "logo.png");
$this->new_message('Logotipo guardado correctamente.');
}
} else {
if (isset($_GET['delete_logo'])) {
if (file_exists('tmp/' . FS_TMP_NAME . 'logo.png')) {
unlink('tmp/' . FS_TMP_NAME . 'logo.png');
$this->new_message('Logotipo borrado correctamente.');
}
} else {
if (isset($_GET['delete_cuenta'])) {
$cuenta = $this->cuenta_banco->get($_GET['delete_cuenta']);
if ($cuenta) {
if ($cuenta->delete()) {
$this->new_message('Cuenta bancaria eliminada correctamente.');
} else {
$this->new_error_msg('Imposible eliminar la cuenta bancaria.');
}
} else {
$this->new_error_msg('Cuenta bancaria no encontrada.');
}
//.........这里部分代码省略.........