Skip to content

Instantly share code, notes, and snippets.

View codeboxr's full-sized avatar
🎯
Focusing

Codeboxr codeboxr

🎯
Focusing
View GitHub Profile
@codeboxr
codeboxr / gist:5820819
Last active December 18, 2015 17:49
Sending Customized User Registration Email Alert to Admin in Moodle step2 From My blog post: http://codeboxr.com/blogs/sending-customized-user-registration-email-alert-to-admin-in-moodle
/**
* Send email to specified user with confirmation text and activation link.
*
* @global object
* @param user $user A {@link $USER} object
* @return bool Returns true if mail was sent OK and false if there was an error.
*/
//update by codeboxr
function send_confirmation_email($user) {
@codeboxr
codeboxr / gist:5820826
Last active December 18, 2015 17:49
Sending Customized User Registration Email Alert to Admin in Moodle - Step1 From My blog post: http://codeboxr.com/blogs/sending-customized-user-registration-email-alert-to-admin-in-moodle
$string['emailconfirmationtoadmin'] = 'Hi {$a->supportname},
A new account \'{$a->firstname}\' has been requested at \'{$a->sitename}\'
{$a->admindata}';
@codeboxr
codeboxr / gist:5894857
Created June 30, 2013 11:40
Make Radio Switch button in joomla frontend
/**
* @package Joomla.Administrator
* @subpackage Templates.isis
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @since 3.0
*/
(function($)
{
Simple shortcode
{cbscrollpane}
text here
{/cbscrollpane}
For width and left align
### Function: Add Download Query Vars
add_filter('query_vars', 'cbreport_query_vars');
function cbreport_query_vars($public_query_vars) {
$public_query_vars[] = "report_ids";
return $public_query_vars;
}
add_action('template_redirect', 'reportdownload_file', 5);
else if(JRequest::getCmd('option') == 'com_content') {
//var_dump($context);
if(!($context == 'com_content.article' || $context == 'com_content.category')) {return; }
$comcontent = true;
if($this->_floatcontent && (JRequest::getCmd('view') == 'article') && $float){$float = true;}else{$float = false;}
$this->_floatpos = $this->_floatposcontent;
$this->_floathmargin = $this->_floathmargincontent;
$this->_floatvmargin = $this->_floatvmargincontent;
//$this->_floatdistance = $this->_floatdistancecontent;
@codeboxr
codeboxr / gist:6171227
Created August 7, 2013 04:40
Com_k2 default open graph fix
//Go to(windows style path) joomla root/components/com_k2/views/item/view.html.php
// and comment line from 445 to 455
/*
$document->setMetaData('og:url', $uri->toString());
$document->setMetaData('og:title', htmlspecialchars($document->getTitle(), ENT_QUOTES, 'UTF-8'));
$document->setMetaData('og:type', 'Article');
$facebookImage = 'image'.$params->get('facebookImage', 'Small');
if ($item->$facebookImage && JFile::exists(JPATH_SITE.$item->$facebookImage))
{
$image = substr(JURI::root(), 0, -1).str_replace(JURI::root(true), '', $item->$facebookImage);
@codeboxr
codeboxr / rating system direct function call
Last active August 29, 2015 13:56
rating system direct function call
//The standalone rating form function is used to show the rating form using direct function call from theme or ther plugin.
/**
* This function add standalone rating form or custom rating form call.
* This will add both rating form and review list both based on form setting and permission
*
* Also it'll not be cached just like as the comment system of wp
*
* @param $form_id rating form id, if empty then will use the default one
* @param $post_id post id, if empty then will use the post id from the loop
* @param $theme_key if empty then will use from default setting
@codeboxr
codeboxr / Code Sample to get rating summary of a post
Created February 18, 2014 06:36
Code Sample to get rating summary of a post
<?php
/*
* If you are in WP loop leave this blank. The id will be automatically inhertited.
*/
$postId = '';
/*
* If you don't know the rating form ID, please go to the "Rating System"->"Rating Form Listing" page from admin
* and get the ID of the rating form. If you yet cannot get the ID leave this blank, the default form will be loaded.
@codeboxr
codeboxr / css for rating system, if theme 20-14
Created February 18, 2014 12:20
css for rating system, if theme 20-14
$postid = $post->ID;
$rating = standalonePostingRatingSystem('4', $postid);
echo '<div style="left-margin:200px;">'.$rating.'</div>';
adjust the margin .
in other theme hopefully you dont have to do anything.