diff --git a/Plugins/Aspose_Cells_Java_for_PHP/README.md b/Plugins/Aspose_Cells_Java_for_PHP/README.md deleted file mode 100644 index dbd29754..00000000 --- a/Plugins/Aspose_Cells_Java_for_PHP/README.md +++ /dev/null @@ -1,20 +0,0 @@ -# Aspose.Cells Java for PHP -Aspose Cells Java for PHP is a PHP project that demonstrates / provides the Aspose.Cells for Java API usage examples in PHP by using PHP/JAVA Bridge. - -You will need to configure PHP/Java Bridge before using any of the Aspose provided Java APIs in PHP e.g Aspose.Words, Aspose.Cells and Aspose.Slides etc. - -For the configuration/setup of PHP/Java Bridge, please see: - -http://php-java-bridge.sourceforge.net/pjb/index.php - -To download Aspose.Cells for Java API to be used with these examples through PHP/Java Bridge -Please navigate to: - -http://www.aspose.com/community/files/72/java-components/aspose.cells-for-java/ - -For most complete documentation of the project, check Aspose.Words Java for PHP confluence wiki link: - -http://www.aspose.com/docs/display/cellsjava/5.+Aspose.Cells+Java+for+PHP - - - diff --git a/Plugins/Aspose_Cells_Java_for_PHP/src/aspose/cells/WorkingWithFiles/FileHandlingFeatures/OpeningFiles.php b/Plugins/Aspose_Cells_Java_for_PHP/src/aspose/cells/WorkingWithFiles/FileHandlingFeatures/OpeningFiles.php index ca045d3b..dff8ead5 100644 --- a/Plugins/Aspose_Cells_Java_for_PHP/src/aspose/cells/WorkingWithFiles/FileHandlingFeatures/OpeningFiles.php +++ b/Plugins/Aspose_Cells_Java_for_PHP/src/aspose/cells/WorkingWithFiles/FileHandlingFeatures/OpeningFiles.php @@ -1,10 +1,4 @@ getWorksheets(); - $worksheet = $worksheets->get(0); +$worksheets = $workbook->getWorksheets(); +$worksheet = $worksheets->get(0); - $h_page_breaks = $worksheet->getHorizontalPageBreaks(); - $h_page_breaks->add("Y30"); +$h_page_breaks = $worksheet->getHorizontalPageBreaks(); +$h_page_breaks->add("Y30"); - $v_page_breaks = $worksheet->getVerticalPageBreaks(); - $v_page_breaks->add("Y30"); +$v_page_breaks = $worksheet->getVerticalPageBreaks(); +$v_page_breaks->add("Y30"); - # Saving the modified Excel file in default (that is Excel 2003) format - $workbook->save($dataDir . "Add Page Breaks.xls"); +# Saving the modified Excel file in default (that is Excel 2003) format +$workbook->save($dataDir . "Add Page Breaks.xls"); print "Add page breaks, please check the output file." . PHP_EOL; @@ -43,11 +43,11 @@ public static function add_page_breaks($dataDir=null, $workbook) public static function clear_all_page_breaks($dataDir=null, $workbook) { - $workbook->getWorksheets()->get(0)->getHorizontalPageBreaks()->clear(); - $workbook->getWorksheets()->get(0)->getVerticalPageBreaks()->clear(); +$workbook->getWorksheets()->get(0)->getHorizontalPageBreaks()->clear(); +$workbook->getWorksheets()->get(0)->getVerticalPageBreaks()->clear(); - # Saving the modified Excel file in default (that is Excel 2003) format - $workbook->save($dataDir . "Clear All Page Breaks.xls"); +# Saving the modified Excel file in default (that is Excel 2003) format +$workbook->save($dataDir . "Clear All Page Breaks.xls"); print "Clear all page breaks, please check the output file." . PHP_EOL; diff --git a/Plugins/Aspose_Cells_Java_for_PHP/src/aspose/cells/quickstart/HelloWorld.php b/Plugins/Aspose_Cells_Java_for_PHP/src/aspose/cells/quickstart/HelloWorld.php index ed733fe5..bd4442c7 100644 --- a/Plugins/Aspose_Cells_Java_for_PHP/src/aspose/cells/quickstart/HelloWorld.php +++ b/Plugins/Aspose_Cells_Java_for_PHP/src/aspose/cells/quickstart/HelloWorld.php @@ -1,42 +1,34 @@ getWorksheets()->get(0); - $doc = new \COM("Aspose.Words.Document"); + # Access cell "A1" in the sheet. + $cell = $sheet->getCells()->get("A1"); - $builder = new \COM("Aspose.Words.DocumentBuilder"); + # Input the "Hello World!" text into the "A1" cell + $cell->setValue("Hello World!"); - $builder->Document = $doc; + # Saving the modified Excel file in default (that is Excel 2003) format + $file_format_type = new FileFormatType(); + $workbook->save($dataDir . "HelloWorld.xls", $file_format_type->EXCEL_97_TO_2003); - $builder->Write("Hello world!"); - - $doc->Save("./data/HelloWorld Out.docx"); - - - /*$ptr= new \COM("Aspose.Words.ComHelper")or die('Unable to load helper'); - - $doc = $ptr->New("Document",array()); - - $builder = $ptr->New("Aspose.Words.DocumentBuilder",array($doc)); - - $builder->Writeln("Hello World!"); - - $doc->Save("./data/HelloWorld Out.docx");*/ + print "Document has been saved, please check the output file."; } diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.default.out.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.default.out.xls deleted file mode 100644 index 77747122..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.default.out.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xls deleted file mode 100644 index 667ceee1..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xlsx b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xlsx deleted file mode 100644 index 7bf7a189..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xlsx and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xml b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xml deleted file mode 100644 index f7977198..00000000 --- a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xml +++ /dev/null @@ -1,357 +0,0 @@ - - - 6 - - - Amjad - pc - - - - - - - - - - - - - - - - My Data - - - - - - - - - - - - - - Items A - - Items B - - Items C - - Items D - - Items E - - Items F - - Items G - - Items H - - - - 12 - - 23 - - 33 - - 66 - - 11 - - 87 - - 99 - - 33 - - - - 23 - - 22 - - 33 - - 77 - - 31 - - 22 - - 45 - - 56 - - - - 34 - - 11 - - 12 - - 23 - - 22 - - 34 - - 11 - - 12 - - - - 45 - - 43 - - 54 - - 88 - - 36 - - 45 - - 45 - - 37 - - - - 65 - - 65 - - 65 - - 65 - - 13 - - 65 - - 9 - - 35 - - - - 34 - - 22 - - 27 - - 22 - - 32 - - 23 - - 23 - - 32 - - - - 213 - - 186 - - 224 - - 341 - - 145 - - 276 - - 232 - - 205 - - - - - - - - 119 - - - - 3 - 16 - 7 - R17C8 - - - - - - - - - Sheet 2 Contents go here … - - - - - - - 9 - 2 - 2 - - - - 3 - 10 - 2 - R11C3 - - - - - - - - - Sheet 3 Contents go here … - - - - - - - 9 - 2 - 2 - - - - 3 - 3 - R4C1 - - - - - - - - - Evaluation Only. Created with Aspose.Cells for Java.Copyright 2003 - 2015 Aspose Pty Ltd. - - - - - - - 9 - - - - - - - - Evaluation Only. Created with Aspose.Cells for Java.Copyright 2003 - 2015 Aspose Pty Ltd. - - - - - - - 9 - - - - - - - - Evaluation Only. Created with Aspose.Cells for Java.Copyright 2003 - 2015 Aspose Pty Ltd. - - - - - - - 9 - - - - - - - - Evaluation Only. Created with Aspose.Cells for Java.Copyright 2003 - 2015 Aspose Pty Ltd. - - - - - - - 9 - - - - diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/UtilityFeatures/ConvertingExcelFilesToHtml/OutBook1.html b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/UtilityFeatures/ConvertingExcelFilesToHtml/OutBook1.html deleted file mode 100644 index 5f0ae8e4..00000000 --- a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/UtilityFeatures/ConvertingExcelFilesToHtml/OutBook1.html +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - <body> - <p>This page uses frames, but your browser doesn't support them.</p> - </body> - - - diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/UtilityFeatures/ConvertingToMhtmlFiles/Book1.xlsx.out.mht b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/UtilityFeatures/ConvertingToMhtmlFiles/Book1.xlsx.out.mht deleted file mode 100644 index 0ba40c69..00000000 --- a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/UtilityFeatures/ConvertingToMhtmlFiles/Book1.xlsx.out.mht +++ /dev/null @@ -1,2040 +0,0 @@ -MIME-Version: 1.0 -X-Document-Type: Workbook -Content-Type: multipart/related; boundary="----=_NextPart_aspose01.20120615" - -This document is a Single File Web Page, also known as a Web Archive file. If you are seeing this message, your browser or editor doesn't support Web Archive files. Please download a browser that supports Web Archive, such as Windows Internet Explorer. - -------=_NextPart_aspose01.20120615 -Content-Location:file:///C:/aspose01/Book1.xlsx.out.htm -Content-Transfer-Encoding:quoted-printable -Content-Type:text/html; charset="UTF-8" - - - - - - - - - - -<= -link rel=3dFile-List href=3d"Book1.xlsx.out_files/filelist.xml"> - - - - - - - - - - - - - - - - - - - - <bod= -y> - <p>This page uses frames, but your browser doesn't support them.<= -/p> - </body> - - - - - -------=_NextPart_aspose01.20120615 -Content-Location:file:///C:/aspose01/Book1.xlsx.out_files/sheet001.htm -Content-Transfer-Encoding:quoted-printable -Content-Type:text/html; charset="UTF-8" - - - - - - - - - - - - - - - - - - - - - -------=_NextPart_aspose01.20120615 -Content-Location:file:///C:/aspose01/Book1.xlsx.out_files/sheet002.htm -Content-Transfer-Encoding:quoted-printable -Content-Type:text/html; charset="UTF-8" - - - - - - - - - - - - - - - - - - - - - -------=_NextPart_aspose01.20120615 -Content-Location:file:///C:/aspose01/Book1.xlsx.out_files/sheet003.htm -Content-Transfer-Encoding:quoted-printable -Content-Type:text/html; charset="UTF-8" - - - - - - - - - - - - - - - - - - - - - -------=_NextPart_aspose01.20120615 -Content-Location:file:///C:/aspose01/Book1.xlsx.out_files/sheet004.htm -Content-Transfer-Encoding:quoted-printable -Content-Type:text/html; charset="UTF-8" - - - - - - - - - - - - - - - - - - - - - -------=_NextPart_aspose01.20120615 -Content-Location:file:///C:/aspose01/Book1.xlsx.out_files/stylesheet.css -Content-Transfer-Encoding:quoted-printable -Content-Type:text/html; charset="UTF-8" - -tr - {mso-height-source:auto; - mso-ruby-visibility:none;} -col - {mso-width-sourc= -e:auto; - mso-ruby-visibility:none;} -br - {mso-data-placement:same-cell;} -ruby - {= -ruby-align:left;} -.style0 - { - mso-number-format:General; - text-align:general; - = -vertical-align:bottom; - white-space:nowrap; - background:auto; - mso-pattern:au= -to; - color:#000000; - font-size:10pt; - font-weight:400; - font-style:normal; - fon= -t-family:"Arial","sans-serif"; - border:none; - mso-protection:locked visible;= - - mso-style-name:Normal; - mso-style-id:0;} -.font0 - { - color:#000000; - font-size:= -10pt; - font-weight:400; - font-style:normal; - font-family:"Arial","sans-serif"= -; } -.font1 - { - color:#800000; - font-size:16pt; - font-weight:700; - font-style:nor= -mal; - font-family:"Arial","sans-serif"; } -.font2 - { - color:#000000; - font-size:= -10pt; - font-weight:400; - font-style:normal; - font-family:"Arial","sans-serif"= -; } -.font3 - { - color:#FF0000; - font-size:10pt; - font-weight:700; - font-style:nor= -mal; - font-family:"Tahoma","sans-serif"; } -.font4 - { - color:#0000FF; - font-size= -:18pt; - font-weight:700; - font-style:italic; - font-family:"Arial","sans-serif= -"; } -td - {mso-style-parent:style0; - mso-number-format:General; - text-align:gen= -eral; - vertical-align:bottom; - white-space:nowrap; - background:auto; - mso-patt= -ern:auto; - color:#000000; - font-size:10pt; - font-weight:400; - font-style:norma= -l; - font-family:"Arial","sans-serif"; - border:none; - mso-protection:locked vi= -sible; - mso-ignore:padding;} -.style0 - { - text-align:general; - vertical-align:bo= -ttom; - white-space:nowrap; - background:auto; - mso-pattern:auto; - font-size:10p= -t; - font-weight:400; - font-style:normal; - font-family:"Arial","sans-serif"; - m= -so-protection:locked visible; - mso-style-name:"Normal"; - } -.style1 - { - text-ali= -gn:general; - vertical-align:middle; - white-space:nowrap; - background:auto; - ms= -o-pattern:auto; - font-size:10pt; - font-weight:400; - font-style:normal; - font-f= -amily:"Arial","sans-serif"; - mso-protection:locked visible; - } -.style2 - { - text= --align:general; - vertical-align:middle; - white-space:nowrap; - background:auto= -; - mso-pattern:auto; - font-size:10pt; - font-weight:400; - font-style:normal; - fo= -nt-family:"Arial","sans-serif"; - mso-protection:locked visible; - } -.style3 - { - = -text-align:general; - vertical-align:middle; - white-space:nowrap; - background:= -auto; - mso-pattern:auto; - font-size:10pt; - font-weight:400; - font-style:normal= -; - font-family:"Arial","sans-serif"; - mso-protection:locked visible; - } -.style= -4 - { - text-align:general; - vertical-align:middle; - white-space:nowrap; - backgro= -und:auto; - mso-pattern:auto; - font-size:10pt; - font-weight:400; - font-style:no= -rmal; - font-family:"Arial","sans-serif"; - mso-protection:locked visible; - } -.s= -tyle5 - { - text-align:general; - vertical-align:middle; - white-space:nowrap; - bac= -kground:auto; - mso-pattern:auto; - font-size:10pt; - font-weight:400; - font-styl= -e:normal; - font-family:"Arial","sans-serif"; - mso-protection:locked visible;= - - } -.style6 - { - text-align:general; - vertical-align:middle; - white-space:nowrap;= - - background:auto; - mso-pattern:auto; - font-size:10pt; - font-weight:400; - font-= -style:normal; - font-family:"Arial","sans-serif"; - mso-protection:locked visi= -ble; - } -.style7 - { - text-align:general; - vertical-align:middle; - white-space:now= -rap; - background:auto; - mso-pattern:auto; - font-size:10pt; - font-weight:400; - f= -ont-style:normal; - font-family:"Arial","sans-serif"; - mso-protection:locked = -visible; - } -.style8 - { - text-align:general; - vertical-align:middle; - white-space= -:nowrap; - background:auto; - mso-pattern:auto; - font-size:10pt; - font-weight:40= -0; - font-style:normal; - font-family:"Arial","sans-serif"; - mso-protection:loc= -ked visible; - } -.style9 - { - text-align:general; - vertical-align:middle; - white-s= -pace:nowrap; - background:auto; - mso-pattern:auto; - font-size:10pt; - font-weigh= -t:400; - font-style:normal; - font-family:"Arial","sans-serif"; - mso-protection= -:locked visible; - } -.style10 - { - text-align:general; - vertical-align:middle; - wh= -ite-space:nowrap; - background:auto; - mso-pattern:auto; - font-size:10pt; - font-= -weight:400; - font-style:normal; - font-family:"Arial","sans-serif"; - mso-prote= -ction:locked visible; - } -.style11 - { - text-align:general; - vertical-align:middl= -e; - white-space:nowrap; - background:auto; - mso-pattern:auto; - font-size:10pt; - = -font-weight:400; - font-style:normal; - font-family:"Arial","sans-serif"; - mso-= -protection:locked visible; - } -.style12 - { - text-align:general; - vertical-align:= -middle; - white-space:nowrap; - background:auto; - mso-pattern:auto; - font-size:1= -0pt; - font-weight:400; - font-style:normal; - font-family:"Arial","sans-serif";= - - mso-protection:locked visible; - } -.style13 - { - text-align:general; - vertical-a= -lign:middle; - white-space:nowrap; - background:auto; - mso-pattern:auto; - font-s= -ize:10pt; - font-weight:400; - font-style:normal; - font-family:"Arial","sans-se= -rif"; - mso-protection:locked visible; - } -.style14 - { - text-align:general; - verti= -cal-align:middle; - white-space:nowrap; - background:auto; - mso-pattern:auto; - f= -ont-size:10pt; - font-weight:400; - font-style:normal; - font-family:"Arial","sa= -ns-serif"; - mso-protection:locked visible; - } -.x15 - { - mso-style-parent:style0;= - - mso-number-format:General; - text-align:general; - vertical-align:bottom; - whi= -te-space:nowrap; - background:auto; - mso-pattern:auto; - font-size:10pt; - font-w= -eight:400; - font-style:normal; - font-family:"Arial","sans-serif"; - mso-protec= -tion:locked visible; - } -.style16 - { - mso-number-format:"0%"; - text-align:genera= -l; - vertical-align:middle; - white-space:nowrap; - background:auto; - mso-pattern= -:auto; - font-size:10pt; - font-weight:400; - font-style:normal; - font-family:"Ar= -ial","sans-serif"; - mso-protection:locked visible; - mso-style-name:"Percent"= -; - } -.style17 - { - mso-number-format:"_\(\0022$\0022* \#\,\#\#0\.00_\)\;_\(\002= -2$\0022* \(\#\,\#\#0\.00\)\;_\(\0022$\0022* \0022-\0022??_\)\;_\(\@_\)"; - t= -ext-align:general; - vertical-align:middle; - white-space:nowrap; - background:a= -uto; - mso-pattern:auto; - font-size:10pt; - font-weight:400; - font-style:normal;= - - font-family:"Arial","sans-serif"; - mso-protection:locked visible; - mso-styl= -e-name:"Currency"; - } -.style18 - { - mso-number-format:"_\(\0022$\0022* \#\,\#\#= -0_\)\;_\(\0022$\0022* \(\#\,\#\#0\)\;_\(\0022$\0022* \0022-\0022_\)\;_\(\@= -_\)"; - text-align:general; - vertical-align:middle; - white-space:nowrap; - backg= -round:auto; - mso-pattern:auto; - font-size:10pt; - font-weight:400; - font-style:= -normal; - font-family:"Arial","sans-serif"; - mso-protection:locked visible; - m= -so-style-name:"Currency [0]"; - } -.style19 - { - mso-number-format:"_\(* \#\,\#\#= -0\.00_\)\;_\(* \(\#\,\#\#0\.00\)\;_\(* \0022-\0022??_\)\;_\(\@_\)"; - text-a= -lign:general; - vertical-align:middle; - white-space:nowrap; - background:auto; - = -mso-pattern:auto; - font-size:10pt; - font-weight:400; - font-style:normal; - font= --family:"Arial","sans-serif"; - mso-protection:locked visible; - mso-style-nam= -e:"Comma"; - } -.style20 - { - mso-number-format:"_\(* \#\,\#\#0_\)\;_\(* \(\#\,\#= -\#0\)\;_\(* \0022-\0022_\)\;_\(\@_\)"; - text-align:general; - vertical-align:= -middle; - white-space:nowrap; - background:auto; - mso-pattern:auto; - font-size:1= -0pt; - font-weight:400; - font-style:normal; - font-family:"Arial","sans-serif";= - - mso-protection:locked visible; - mso-style-name:"Comma [0]"; - } -.x21 - { - mso-st= -yle-parent:style0; - mso-number-format:General; - text-align:general; - vertical= --align:bottom; - white-space:nowrap; - background:auto; - mso-pattern:auto; - colo= -r:#000000; - font-size:10pt; - font-weight:400; - font-style:normal; - font-family= -:"Arial","sans-serif"; - mso-protection:locked visible; - } -.x22 - { - mso-style-pa= -rent:style0; - mso-number-format:General; - text-align:general; - vertical-align= -:bottom; - white-space:nowrap; - background:auto; - mso-pattern:auto; - font-size:= -10pt; - font-weight:400; - font-style:normal; - font-family:"Arial","sans-serif"= -; - mso-protection:locked visible; - } -.x23 - { - mso-style-parent:style0; - mso-numb= -er-format:General; - text-align:general; - vertical-align:bottom; - white-space:= -nowrap; - background:#0000FF; - mso-pattern:auto none; - color:#FF0000; - font-siz= -e:10pt; - font-weight:700; - font-style:normal; - font-family:"Tahoma","sans-ser= -if"; - border-top:1px solid windowtext; - border-right:1px solid windowtext; - b= -order-bottom:1px solid windowtext; - border-left:1px solid windowtext; - mso-d= -iagonal-down:none; - mso-diagonal-up:none; - mso-protection:locked visible; - } -.= -x24 - { - mso-style-parent:style0; - mso-number-format:General; - text-align:gener= -al; - vertical-align:bottom; - white-space:nowrap; - background:#FFFF99; - mso-pat= -tern:auto none; - color:#FF0000; - font-size:10pt; - font-weight:700; - font-style= -:normal; - font-family:"Tahoma","sans-serif"; - border-top:1px solid windowtex= -t; - border-right:1px solid windowtext; - border-bottom:1px solid windowtext; - = -border-left:1px solid windowtext; - mso-diagonal-down:none; - mso-diagonal-up:= -none; - mso-protection:locked visible; - } -.x25 - { - mso-style-parent:style0; - mso-= -number-format:General; - text-align:general; - vertical-align:bottom; - white-sp= -ace:nowrap; - background:auto; - mso-pattern:auto; - font-size:10pt; - font-weight= -:400; - font-style:normal; - font-family:"Arial","sans-serif"; - border-top:1px = -solid windowtext; - border-right:1px solid windowtext; - border-bottom:1px sol= -id windowtext; - border-left:1px solid windowtext; - mso-diagonal-down:none; - m= -so-diagonal-up:none; - mso-protection:locked visible; - } -.x26 - { - mso-style-pare= -nt:style0; - mso-number-format:General; - text-align:center; - vertical-align:bo= -ttom; - white-space:nowrap; - background:#CCFFCC; - mso-pattern:auto none; - color= -:#800000; - font-size:16pt; - font-weight:700; - font-style:normal; - font-family:= -"Arial","sans-serif"; - mso-protection:locked visible; - } -.x27 - { - mso-style-par= -ent:style0; - mso-number-format:General; - text-align:general; - vertical-align:= -middle; - white-space:nowrap; - background:auto; - mso-pattern:auto; - color:#0000= -FF; - font-size:18pt; - font-weight:700; - font-style:italic; - font-family:"Arial= -","sans-serif"; - mso-protection:locked visible; - } - -------=_NextPart_aspose01.20120615 -Content-Location:file:///C:/aspose01/Book1.xlsx.out_files/tabstrip.htm -Content-Transfer-Encoding:quoted-printable -Content-Type:text/html; charset="UTF-8" - - - - - - - - - - - - - - - - - - - - -
 Sheet1  = -;Sheet2  Sheet3 &nb= -sp;Evaluation Warning 
- - - - -------=_NextPart_aspose01.20120615 -Content-Location:file:///C:/aspose01/Book1.xlsx.out_files/filelist.xml -Content-Transfer-Encoding:quoted-printable -Content-Type:text/html; charset="UTF-8" - - - - - - - - - - <= -o:File HRef=3d"sheet004.htm"/> - - -------=_NextPart_aspose01.20120615-- diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/UtilityFeatures/ConvertingWorksheetToSvg/Template.xlsxSheet10.out.svg b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/UtilityFeatures/ConvertingWorksheetToSvg/Template.xlsxSheet10.out.svg deleted file mode 100644 index e91401f3..00000000 --- a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/UtilityFeatures/ConvertingWorksheetToSvg/Template.xlsxSheet10.out.svg +++ /dev/null @@ -1,1074 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - My - - Data - - - - - - - - - - - - Items - - A - - - - - - - - - - - - Items - - B - - - - - - - - - - - - Items - - C - - - - - - - - - - - - Items - - D - - - - - - - - - - - - Items - - E - - - - - - - - - - - - Items - - F - - - - - - - - - - - - Items - - G - - - - - - - - - - - - Items - - H - - - - - - - - - - - - 1 - 2 - - - - - - - - - - - - 2 - 3 - - - - - - - - - - - - 3 - 3 - - - - - - - - - - - - 6 - 6 - - - - - - - - - - - - 1 - 1 - - - - - - - - - - - - 8 - 7 - - - - - - - - - - - - 9 - 9 - - - - - - - - - - - - 3 - 3 - - - - - - - - - - - - 2 - 3 - - - - - - - - - - - - 2 - 2 - - - - - - - - - - - - 3 - 3 - - - - - - - - - - - - 7 - 7 - - - - - - - - - - - - 3 - 1 - - - - - - - - - - - - 2 - 2 - - - - - - - - - - - - 4 - 5 - - - - - - - - - - - - 5 - 6 - - - - - - - - - - - - 3 - 4 - - - - - - - - - - - - 1 - 1 - - - - - - - - - - - - 1 - 2 - - - - - - - - - - - - 2 - 3 - - - - - - - - - - - - 2 - 2 - - - - - - - - - - - - 3 - 4 - - - - - - - - - - - - 1 - 1 - - - - - - - - - - - - 1 - 2 - - - - - - - - - - - - 4 - 5 - - - - - - - - - - - - 4 - 3 - - - - - - - - - - - - 5 - 4 - - - - - - - - - - - - 8 - 8 - - - - - - - - - - - - 3 - 6 - - - - - - - - - - - - 4 - 5 - - - - - - - - - - - - 4 - 5 - - - - - - - - - - - - 3 - 7 - - - - - - - - - - - - 6 - 5 - - - - - - - - - - - - 6 - 5 - - - - - - - - - - - - 6 - 5 - - - - - - - - - - - - 6 - 5 - - - - - - - - - - - - 1 - 3 - - - - - - - - - - - - 6 - 5 - - - - - - - - - - - - 9 - - - - - - - - - - - - 3 - 5 - - - - - - - - - - - - 3 - 4 - - - - - - - - - - - - 2 - 2 - - - - - - - - - - - - 2 - 7 - - - - - - - - - - - - 2 - 2 - - - - - - - - - - - - 3 - 2 - - - - - - - - - - - - 2 - 3 - - - - - - - - - - - - 2 - 3 - - - - - - - - - - - - 3 - 2 - - - - - - - - - - - - 2 - 1 - 3 - - - - - - - - - - - - 1 - 8 - 6 - - - - - - - - - - - - 2 - 2 - 4 - - - - - - - - - - - - 3 - 4 - 1 - - - - - - - - - - - - 1 - 4 - 5 - - - - - - - - - - - - 2 - 7 - 6 - - - - - - - - - - - - 2 - 3 - 2 - - - - - - - - - - - - 2 - 0 - 5 - - - - - - - Evaluation Only. Created with Aspose.Cells for Java. Copyright 2003 - 2015 Aspose Pty Ltd. - - - - diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/UtilityFeatures/Excel2PdfConversion/OutBook1.pdf b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/UtilityFeatures/Excel2PdfConversion/OutBook1.pdf deleted file mode 100644 index 52b23ab7..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/UtilityFeatures/Excel2PdfConversion/OutBook1.pdf and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Autofit Column.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Autofit Column.xls deleted file mode 100644 index bf754344..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Autofit Column.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Autofit Row.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Autofit Row.xls deleted file mode 100644 index a8b95951..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Autofit Row.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Copy Rows.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Copy Rows.xls deleted file mode 100644 index 17a767b8..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Copy Rows.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Delete Column.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Delete Column.xls deleted file mode 100644 index 27960b30..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Delete Column.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Delete Multiple Rows.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Delete Multiple Rows.xls deleted file mode 100644 index 477246ac..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Delete Multiple Rows.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Delete Row.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Delete Row.xls deleted file mode 100644 index 2bca6d46..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Delete Row.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Group Rows And Columns.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Group Rows And Columns.xls deleted file mode 100644 index fa73cd49..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Group Rows And Columns.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Hide Rows And Columns.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Hide Rows And Columns.xls deleted file mode 100644 index 2e271308..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Hide Rows And Columns.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Insert Column.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Insert Column.xls deleted file mode 100644 index bb047238..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Insert Column.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Insert Multiple Rows.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Insert Multiple Rows.xls deleted file mode 100644 index f5d94782..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Insert Multiple Rows.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Insert Row.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Insert Row.xls deleted file mode 100644 index 41764ba2..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Insert Row.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Set Column Width.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Set Column Width.xls deleted file mode 100644 index 69f2191e..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Set Column Width.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Set Row Height.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Set Row Height.xls deleted file mode 100644 index 6f1ed52e..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Set Row Height.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Ungroup Rows And Columns.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Ungroup Rows And Columns.xls deleted file mode 100644 index 4775aadb..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Ungroup Rows And Columns.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Unhide Rows And Columns.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Unhide Rows And Columns.xls deleted file mode 100644 index 500c81f0..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithRowsAndColumns/RowsAndColumns/Unhide Rows And Columns.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/DisplayHideGridlines/output.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/DisplayHideGridlines/output.xls deleted file mode 100644 index 27a6da16..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/DisplayHideGridlines/output.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/DisplayHideScrollBars/output.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/DisplayHideScrollBars/output.xls deleted file mode 100644 index 004945b8..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/DisplayHideScrollBars/output.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/FreezePanes/book.out.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/FreezePanes/book.out.xls deleted file mode 100644 index b5d2f9ee..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/FreezePanes/book.out.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/HideUnhideWorksheet/output.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/HideUnhideWorksheet/output.xls deleted file mode 100644 index d5cc29b1..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/HideUnhideWorksheet/output.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/PageBreakPreview/output.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/PageBreakPreview/output.xls deleted file mode 100644 index 3a9ef787..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/PageBreakPreview/output.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/SplitPanes/book.out.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/SplitPanes/book.out.xls deleted file mode 100644 index 8b81039a..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/SplitPanes/book.out.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/ZoomFactor/output.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/ZoomFactor/output.xls deleted file mode 100644 index 1a22e80b..00000000 Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithWorksheets/DisplayFeatures/ZoomFactor/output.xls and /dev/null differ diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/index.php b/Plugins/Aspose_Cells_Java_for_PHP/tests/index.php index f3b90264..24cd7d5f 100644 --- a/Plugins/Aspose_Cells_Java_for_PHP/tests/index.php +++ b/Plugins/Aspose_Cells_Java_for_PHP/tests/index.php @@ -4,6 +4,7 @@ require_once __DIR__ . '/../vendor/autoload.php'; // Autoload files using Composer autoload +use Aspose\Cells\QuickStart\HelloWorld; use Aspose\Cells\WorkingWithFiles\FileHandlingFeatures\OpeningFiles; use Aspose\Cells\WorkingWithFiles\FileHandlingFeatures\SavingFiles; use Aspose\Cells\WorkingWithFiles\UtilityFeatures\ChartToImage; @@ -34,6 +35,8 @@ use Aspose\Cells\WorkingWithRowsAndColumns\RowsAndColumns; +print "Running Aspose\\Cells\\QuickStart\\HelloWorld::run()" . PHP_EOL; +HelloWorld::run(__DIR__ . '/data/QuickStart/HelloWorld/'); print "Running Aspose\\Cells\\WorkingWithFiles\\FileHandlingFeatures\\OpeningFiles::run()" . PHP_EOL; OpeningFiles::run(__DIR__ . '/data/WorkingWithFiles/FileHandlingFeatures/OpeningFiles/');