Skip to content

Instantly share code, notes, and snippets.

View whatnickcodes's full-sized avatar
😍

Nicholas Cerminara whatnickcodes

😍
View GitHub Profile
@whatnickcodes
whatnickcodes / input
Created December 18, 2012 18:24
on focus blur show value
<input type="text" class="text" id="search-input" value="search..."
onfocus="if(this.value=='search...')this.value='';" onblur="if(this.value=='')this.value='search...';" />
@whatnickcodes
whatnickcodes / gist:4333948
Created December 19, 2012 02:47
updated slice for awesomeness
foreach ($this->slice as $key => $value)
{
if (is_array($value))
{
foreach ($value as $k => $v)
{
$this->data[$k] = $this->CI->load->view('slices/'.$v, $this->data, TRUE)."\n";
}
}
elseif (!is_numeric($key))
@whatnickcodes
whatnickcodes / whatever.php
Created December 19, 2012 22:37
stencil awesomeness
<?php
//in stencil lib, function paint(). I added this
foreach ($this->slice as $key => $value)
{
if (is_array($value))
{
foreach ($value as $k => $v)
@whatnickcodes
whatnickcodes / example.php
Created December 20, 2012 18:31
Sample Stencil Controller
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Example extends CI_Controller {
function __construct()
{
parent::__construct();
//slices are reusable parts of your views
$this->stencil->slice(array('header', 'footer'));
@whatnickcodes
whatnickcodes / subpage_layout.php
Created December 20, 2012 18:45
Example View
<!doctype html>
<!--[if IE 6]> <html class="ie6 ie"> <![endif]-->
<!--[if IE 7]> <html class="ie7 ie"> <![endif]-->
<!--[if IE 8]> <html class="ie8 ie"> <![endif]-->
<!--[if gte IE 9]> <!--><html> <!--<![endif]-->
<head>
<!-- robot speak -->
<meta charset="utf-8">
<title><?php echo $title; ?></title>
<!doctype html>
<!--[if IE 6]> <html class="ie6 ie"> <![endif]-->
<!--[if IE 7]> <html class="ie7 ie"> <![endif]-->
<!--[if IE 8]> <html class="ie8 ie"> <![endif]-->
<!--[if gte IE 9]> <!--><html> <!--<![endif]-->
<head>
<!-- robot speak -->
<meta charset="utf-8">
<title>Example Page</title>
@whatnickcodes
whatnickcodes / filemeow.php
Created January 2, 2013 17:18
descriptionmeow
codemeow file 1
@whatnickcodes
whatnickcodes / test.php
Created January 2, 2013 20:06
description
some test
@whatnickcodes
whatnickcodes / test.php
Created January 2, 2013 20:08
description
some test
@whatnickcodes
whatnickcodes / test.php
Created January 2, 2013 20:09
description
some test