Skip to content

Instantly share code, notes, and snippets.

View mariolucasdev's full-sized avatar
💻
Focusing

Mário Lucas mariolucasdev

💻
Focusing
View GitHub Profile
@mariolucasdev
mariolucasdev / template_helper.php
Created August 10, 2019 20:37
Helper de Importação de Template. CodeIgniter
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Template {
public $path_template;
public $path_default;
public function __construct($t, $d = false)
{
@mariolucasdev
mariolucasdev / simpleUploadImage.php
Created July 11, 2019 23:29
Função de Upload de Imagem - CodeIgniter
<?php
function doUpload($file_input, $caminho, $width, $height){
$CI = & get_instance();
$config['upload_path'] = './uploads/'.$caminho.'/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = 1024;
$config['max_width'] = 500;
$config['max_height'] = 500;