Skip to main content

Posts

Showing posts from September, 2015

Get Google Calendar Event List in WordPress

<a href="https://console.cloud.google.com/apis/credentials">Get Your Api Credentials Here</a> <a href="https://calendar.google.com/calendar">Get your Calender ID</a> <?php include_once("wp-load.php"); function  get_calender_events() { $params = array(); /*Get current date*/ $current_date  = date('Y-m-d H:i:s'); /*Convert it to google calendar's rfc_format */ $rfc_format = date("c", strtotime($current_date)); $params[] = 'orderBy=startTime'; $params[] ='maxResults=100'; $params[] = 'timeMin='.urlencode($rfc_format); $url_param = ''; foreach($params as $param) { $url_param.= '&'.$param; } $calender_id = "calender_id"; $client_key =  "client_key"; $url = "https://www.googleapis.com/calendar/v3/calendars/".$calender_id."/events?key=".$client_key."&singleEvents=true".$url_param; $list_events = wp_remote_post($url,

Add bestseller in Magento

Add best seller in magento 1.Z:\samrat\modules\Bestseller\app\code\local\Mage\Catalog\Block\Product\Bestseller.php <?php class Mage_Catalog_Block_Product_Bestseller extends Mage_Catalog_Block_Product_Abstract{     public function __construct(){         parent::__construct();         $storeId = Mage::app()->getStore()->getId();         $products = Mage::getResourceModel('reports/product_collection')             ->addOrderedQty()             ->addAttributeToSelect('*')             ->addAttributeToSelect(array('name', 'price', 'small_image'))             ->setStoreId($storeId)             ->addStoreFilter($storeId)             ->setOrder('ordered_qty', 'desc'); // most best sellers on top         Mage::getSingleton('catalog/product_status')->addVisibleFilterToCollection($products);         Mage::getSingleton('catalog/product_visibility')->addVisibleInCatalogFilterToCollection($produ

Add Gooogle Calender in Php

<!DOCTYPE html> <!-- ***********  GOOGLE CALENDAR  **************************** Author: Vanderlei Bailo E-mail: vanbailo@gmail.com Script: insert, change and delete Google Calenda event https://console.developers.google.com/project/feisty-filament-107711/apiui/apiview/calendar/quotas --> <html>     <head>         <title>GOOGLE CALENDAR - insert, change and delete Google Calenda event</title>         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">         <meta charset="UTF-8">         <style>             body{                 margin: 0;                 width: 100%;                 font-family: Verdana, Arial;             }             #centro{                 width: 780px;                 margin: auto;             }             .calendario{                 position: relative;                 width: 800px;                 height: 600px;                 margin-left:-390px;