Skip to content
This repository has been archived by the owner on Jan 2, 2019. It is now read-only.

Commit

Permalink
Updated include paths for examples
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenba committed Jul 10, 2013
1 parent 5818a79 commit 8057604
Show file tree
Hide file tree
Showing 71 changed files with 71 additions and 71 deletions.
2 changes: 1 addition & 1 deletion Examples/01simple-download-pdf.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
die('This example should only be run from a Web Browser');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Change these values to select the Rendering library that you wish to use
Expand Down
2 changes: 1 addition & 1 deletion Examples/01simple-download-xls.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
die('This example should only be run from a Web Browser');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/01simple-download-xlsx.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
die('This example should only be run from a Web Browser');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/01simple.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/02types-xls.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/02types.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/03formulas.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/04printing.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/05featuredemo.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
include "05featuredemo.inc.php";

/** Include PHPExcel_IOFactory */
require_once '../Classes/PHPExcel/IOFactory.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php';


// Save Excel 2007 file
Expand Down
2 changes: 1 addition & 1 deletion Examples/06largescale-with-cellcaching-sqlite.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';

$cacheMethod = PHPExcel_CachedObjectStorageFactory::cache_to_sqlite;
PHPExcel_Settings::setCacheStorageMethod($cacheMethod);
Expand Down
2 changes: 1 addition & 1 deletion Examples/06largescale-with-cellcaching-sqlite3.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';

$cacheMethod = PHPExcel_CachedObjectStorageFactory::cache_to_sqlite3;
PHPExcel_Settings::setCacheStorageMethod($cacheMethod);
Expand Down
2 changes: 1 addition & 1 deletion Examples/06largescale-with-cellcaching.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';

$cacheMethod = PHPExcel_CachedObjectStorageFactory::cache_in_memory_gzip;
if (!PHPExcel_Settings::setCacheStorageMethod($cacheMethod)) {
Expand Down
2 changes: 1 addition & 1 deletion Examples/06largescale-xls.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


/*
Expand Down
2 changes: 1 addition & 1 deletion Examples/06largescale.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


/*
Expand Down
2 changes: 1 addition & 1 deletion Examples/07reader.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel_IOFactory */
require_once '../Classes/PHPExcel/IOFactory.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php';


if (!file_exists("05featuredemo.xlsx")) {
Expand Down
2 changes: 1 addition & 1 deletion Examples/08conditionalformatting.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/08conditionalformatting2.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/09pagebreaks.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/10autofilter-selection-1.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/10autofilter-selection-2.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/10autofilter-selection-display.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/10autofilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';

// Create new PHPExcel object
echo date('H:i:s').' Create new PHPExcel object'.EOL;
Expand Down
2 changes: 1 addition & 1 deletion Examples/11documentsecurity-xls.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/11documentsecurity.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/12cellProtection.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/13calculation.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// List functions
Expand Down
2 changes: 1 addition & 1 deletion Examples/14excel5.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
include "05featuredemo.inc.php";

/** PHPExcel_IOFactory */
require_once '../Classes/PHPExcel/IOFactory.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php';


// Save Excel 95 file
Expand Down
2 changes: 1 addition & 1 deletion Examples/15datavalidation-xls.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/15datavalidation.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/16csv.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
include "05featuredemo.inc.php";

/** PHPExcel_IOFactory */
require_once '../Classes/PHPExcel/IOFactory.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php';


echo date('H:i:s') , " Write to CSV format" , EOL;
Expand Down
2 changes: 1 addition & 1 deletion Examples/17html.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
include "05featuredemo.inc.php";

/** PHPExcel_IOFactory */
require_once '../Classes/PHPExcel/IOFactory.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php';


echo date('H:i:s') , " Write to HTML format" , EOL;
Expand Down
2 changes: 1 addition & 1 deletion Examples/18extendedcalculation.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
date_default_timezone_set('Europe/London');

/** PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// List functions
Expand Down
2 changes: 1 addition & 1 deletion Examples/19namedrange.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/20readexcel5.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel_IOFactory */
require_once '../Classes/PHPExcel/IOFactory.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php';


if (!file_exists("14excel5.xls")) {
Expand Down
2 changes: 1 addition & 1 deletion Examples/21pdf.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
include "05featuredemo.inc.php";

/** PHPExcel_IOFactory */
require_once '../Classes/PHPExcel/IOFactory.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php';


// Change these values to select the Rendering library that you wish to use
Expand Down
2 changes: 1 addition & 1 deletion Examples/22heavilyformatted.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/23sharedstyles.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/24readfilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
date_default_timezone_set('Europe/London');

/** PHPExcel_IOFactory */
require_once '../Classes/PHPExcel/IOFactory.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php';


// Check prerequisites
Expand Down
2 changes: 1 addition & 1 deletion Examples/25inmemoryimage.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Create new PHPExcel object
Expand Down
2 changes: 1 addition & 1 deletion Examples/26utf8.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Change these values to select the PDF Rendering library that you wish to use
Expand Down
2 changes: 1 addition & 1 deletion Examples/27imagesexcel5.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Read from Excel5 (.xls) template
Expand Down
2 changes: 1 addition & 1 deletion Examples/28iterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** PHPExcel_IOFactory */
require_once '../Classes/PHPExcel/IOFactory.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php';


if (!file_exists("05featuredemo.xlsx")) {
Expand Down
2 changes: 1 addition & 1 deletion Examples/29advancedvaluebinder.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');

/** PHPExcel */
require_once '../Classes/PHPExcel.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';


// Set timezone
Expand Down
2 changes: 1 addition & 1 deletion Examples/30template.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
date_default_timezone_set('Europe/London');

/** PHPExcel_IOFactory */
require_once '../Classes/PHPExcel/IOFactory.php';
require_once dirname(__FILE__) . '/../Classes/PHPExcel/IOFactory.php';



Expand Down
Loading

1 comment on commit 8057604

@tla123
Copy link

@tla123 tla123 commented on 8057604 Aug 1, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey, is there a way to display radial lines on the radar chart? For me they don't show up when using this example.

Please sign in to comment.