Skip to content

Instantly share code, notes, and snippets.

@GDmac
GDmac / forge01.php
Created November 11, 2012 06:26
CI 3.dev DB-Forge
<?php
class Welcome2 extends CI_Controller {
public function forge()
{
$this->output->enable_profiler(TRUE);
$this->load->database();
$this->load->dbforge();
@GDmac
GDmac / reverse_related_stash_list.html
Last active December 16, 2015 15:49
Stash list reverse related
<?php
echo '<PRE>';
$t = "friday 10am";
$x = strtotime($t);
if ( $x < time() )
{
$x = strtotime('next ' . $t);
}
<?php
$xml = new SimpleXMLElement(
'<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
</channel>
</rss>');
@GDmac
GDmac / _readme.md
Last active December 24, 2015 16:39
ExpressionEngine Core_member add-on

Core_member

an ExpressioneEngine add-on

Core Member is a Mash-up of the old Freemember plugin and cp-login code. This add-on was developed for a hobby-group website that uses EE-Core and to allow member-only templates and members-only content.

Members can be added and edited in the control panel, by the admin. This plugin provides only some very basic member functionality like: login, logout, forgot password, reset password and change password.

@GDmac
GDmac / patch_commit_52e32c475952.patch
Last active December 28, 2015 03:29
CI merge cache, QB/AR no escape
diff --git a/system/database/DB_query_builder.php b/system/database/DB_query_builder.php
index f0fe96c35622a77066952d6a23fc526044590df7..d912540b5e2cd825b705088bee2497ba72fd04aa 100644
--- a/system/database/DB_query_builder.php
+++ b/system/database/DB_query_builder.php
@@ -2561,14 +2561,30 @@ abstract class CI_DB_query_builder extends CI_DB_driver {
{
$qb_variable = 'qb_'.$val;
$qb_cache_var = 'qb_cache_'.$val;
- $qb_new = $this->$qb_cache_var;
-
@GDmac
GDmac / EE_ftp.php
Last active December 29, 2015 01:59 — forked from davist11/Ftp.php
Call with $this->EE->load->library('my_ftp'); It will load CI_ftp and replace $this->EE->ftp with your ftp class
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
require_once(BASEPATH . 'libraries/Ftp.php');
class EE_FTP extends CI_FTP {
var $timeout = 90;
/**
* FTP Connect
@GDmac
GDmac / database_DB_driver.php
Last active December 29, 2015 15:19
Codeigniter profiler, where are the queries coming from ?
<?php
// from http://php.net/manual/en/function.debug-backtrace.php#111255
// adapted for codeigniter
// database/DB_driver.php method query()
//...
// Save the query for debugging
if ($this->save_queries == TRUE)
{
$this->queries[] = $sql . "\n# ".get_caller_info();
@GDmac
GDmac / pi.example_plugin.php
Created December 31, 2013 14:50
EE Monkee_patch
<?php
$plugin_info = array(
'pi_name' => 'example_plugin',
'pi_version' => '0.1',
'pi_author' => 'John Doe',
'pi_author_url' => '',
'pi_description' => '',
'pi_usage' => '',
);