Skip to content

Instantly share code, notes, and snippets.

View jlleblanc's full-sized avatar
📈
Investing

Joe LeBlanc jlleblanc

📈
Investing
View GitHub Profile
@jlleblanc
jlleblanc / gist:2252372
Created March 30, 2012 15:46
why com_content?
SELECT a.id, a.title, a.alias, a.title_alias, a.introtext, a.checked_out, a.checked_out_time, a.catid, a.created, a.created_by, a.created_by_alias, CASE WHEN a.modified = 0 THEN a.created ELSE a.modified END as modified, a.modified_by, uam.name as modified_by_name,CASE WHEN a.publish_up = 0 THEN a.created ELSE a.publish_up END as publish_up,a.publish_down, a.images, a.urls, a.attribs, a.metadata, a.metakey, a.metadesc, a.access, a.hits, a.xreference, a.featured, LENGTH(a.fulltext) AS readmore,CASE WHEN badcats.id is not null THEN 0 ELSE a.state END AS state,c.title AS category_title, c.path AS category_route, c.access AS category_access, c.alias AS category_alias,CASE WHEN a.created_by_alias > ' ' THEN a.created_by_alias ELSE ua.name END AS author,ua.email AS author_email,parent.title as parent_title, parent.id as parent_id, parent.path as parent_route, parent.alias as parent_alias,ROUND(v.rating_sum / v.rating_count, 0) AS rating, v.rating_count as rating_count,c.published, CASE WHEN badcats.id is null THEN
@jlleblanc
jlleblanc / gist:2024800
Created March 12, 2012 21:30
eval() is evil, but sometimes evil wins...
<?php
public function get_old_joomla_config()
{
if (!isset($this->old_config)) {
$path = JPath::clean($this->path);
$old_config = file_get_contents($path . '/configuration.php');
$old_config = JString::str_ireplace('JConfig', 'JConfigold', $old_config);
$old_config = JString::str_ireplace('<?php', '', $old_config);
function comma_format_number (value) {
value = value.replace(/,/g, '');
var lead = value.length % 3;
var lead_segment = value.substring(0, lead);
value = value.substring(lead, value.length);
value = value.match(/(\d{3})/g);
if (value != null && value.length > 0) {
<?php
defined( '_JEXEC' ) or die;
/**
* An helper class for generating dropdowns in Joomla.
*
* @package default
* @author Joseph LeBlanc
*/
class SmartDrops