Skip to content

Instantly share code, notes, and snippets.

@jlebrech
jlebrech / gist:649102
Created October 27, 2010 14:13
CodeIngiter paginationsortable
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
include_once(BASEPATH.'libraries/Pagination.php');
class PaginationSortable extends CI_Pagination {
/**
* Generate the pagination links
*
* @access public
* @return string
<?php
$this->db->where("id",$contact->heardfrom_id);
$this->db->from("heardfrom");
$heard_res = $this->db->get()->row();
// Followed by
$this->db->set("status_id","3");
$this->db->where("contact.id",$contact->id);
$this->db->update("contacts");
<li>
<label>Notify me of any sign ups:</label>
<?php echo form_checkbox('notify',$adminuser->notify, $adminuser->notify); ?>
</li>
<?php
// common
function push_implode($set, $glue, $op){
$set_array = array();
foreach($set as $key => $value){
array_push(
$set_array,
sprintf("%s %s %s",
<?php
// common
/*
#usage
push_implode($an_array, ",", "=");
<?php
$options = array(
'conditions' => array(
'User.id' => $id
),
'contain' => array(
'ContactsGroup' => array( // how would i make this order desc
'Contact'
)
mime_type :j, 'application/octet-stream'
mime_type :sj, 'application/octet-stream'
mime_type :plist, 'application/octet-stream'
@import <Foundation/CPObject.j>
@implementation ProjectsController : CPObject
{
// CPTableView datasource methods
- (int)numberOfRowsInTableView:(CPTableView)tableView
{
return 1;
}
@import <Foundation/CPObject.j>
//@import <AppKit/CPColor.j>
@implementation ProjectsView : CPView
{
CPTableView projectsTable;
}
@implementation ProjectsView : CPView
{
CPTableView projectsTable;
}
- (id)initWithFrame:(CPRect)frame
{
self = [super initWithFrame:frame];
// create the CPTableView
projectsTable = [[CPTableView alloc] initWithFrame:[self bounds]];