PHP Classes

File: config/config.php

Recommend this page to a friend!
  Classes of Matías Gentiletti   Picasa Photo Gallery   config/config.php   Download  
File: config/config.php
Role: Configuration script
Content type: text/plain
Description: Configuration file
Class: Picasa Photo Gallery
Extract data picture galleries from Picasa site
Author: By
Last change: -
Date: 16 years ago
Size: 394 bytes
 

Contents

Class file image Download
<?php

## Account name
define('ACCOUNT_NAME', 'Here you name picasa account');

## Folder cache
define('CACHE_FOLDER', dirname(__FILE__).'/../cache');

## Name of the cache file
define('MAIN_FILENAME', CACHE_FOLDER.'/picasa.xml');

## Url of feed
define('URL_FEED', 'http://picasaweb.google.com/data/feed/base/user/'.ACCOUNT_NAME.'?kind=album&alt=rss&hl=en_US&access=public');

?>