├── .gitignore ├── INSTALL.md ├── LICENSE ├── README.md ├── SCC.md ├── WORKFLOWS.md ├── assets └── .gitignore ├── css ├── bg.gif ├── form.css ├── ie.css ├── main.css ├── print.css └── screen.css ├── images ├── .gitkeep ├── calendar.png ├── cross.png └── pencil.png ├── index-test.php ├── index.php ├── protected ├── .htaccess ├── commands │ ├── RbacCommand.php │ └── shell │ │ └── .gitkeep ├── components │ ├── Controller.php │ ├── UserIdentity.php │ ├── ViewHelpers.php │ └── WebUser.php ├── composer.json ├── composer.lock ├── config │ ├── console.php │ ├── main.php │ ├── no.maintenance │ └── test.php ├── controllers │ ├── CustomerController.php │ ├── FileController.php │ ├── IssueController.php │ ├── MaintenanceController.php │ ├── OrderController.php │ ├── OrderItemController.php │ ├── OrderItemSnController.php │ ├── PartController.php │ ├── ProjectController.php │ ├── SiteController.php │ ├── StockController.php │ ├── StockLocationController.php │ ├── StockSerialController.php │ └── UserController.php ├── data │ └── sql │ │ ├── demo-2015-05-29.sql │ │ ├── demo.sql │ │ └── suggest_location.sql ├── extensions │ ├── .gitkeep │ ├── ECSVExport │ │ └── ECSVExport.php │ └── yii-pdf │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── EYiiPdf.php │ │ ├── LICENSE │ │ ├── README.md │ │ └── README_RU.md ├── messages │ └── .gitkeep ├── migrations │ ├── .gitkeep │ ├── m131105_025331_initial_schema.php │ └── m150515_162243_create_rbac_tables.php ├── models │ ├── ContactForm.php │ ├── Customer.php │ ├── File.php │ ├── Issue.php │ ├── LoginForm.php │ ├── MaestroActiveRecord.php │ ├── Order.php │ ├── OrderItem.php │ ├── OrderItemSn.php │ ├── Part.php │ ├── PartList.php │ ├── Project.php │ ├── PvHpref.php │ ├── PvPod.php │ ├── Stock.php │ ├── StockLocation.php │ ├── StockSerial.php │ ├── Unit.php │ └── User.php ├── modules │ └── rbacui │ │ ├── LICENSE │ │ ├── README │ │ ├── RbacuiModule.php │ │ ├── assets │ │ ├── css │ │ │ ├── images │ │ │ │ ├── grid.png │ │ │ │ └── spinner.gif │ │ │ └── rbacui.css │ │ └── js │ │ │ └── rbacui.js │ │ ├── components │ │ └── RbController.php │ │ ├── controllers │ │ ├── AjaxController.php │ │ └── RbacuiController.php │ │ ├── messages │ │ └── nl │ │ │ └── rbacui.php │ │ ├── models │ │ ├── AssignItemForm.php │ │ ├── AttachItemForm.php │ │ └── AuthItemForm.php │ │ └── views │ │ └── rbacui │ │ ├── _assignForm.php │ │ ├── _attachForm.php │ │ ├── _authForm.php │ │ ├── hierarchy.php │ │ ├── index.php │ │ ├── operation.php │ │ ├── role.php │ │ ├── task.php │ │ └── user.php ├── runtime │ └── .gitignore ├── tests │ ├── WebTestCase.php │ ├── bootstrap.php │ ├── fixtures │ │ └── .gitkeep │ ├── functional │ │ └── SiteTest.php │ ├── phpunit.xml │ ├── report │ │ └── .gitignore │ └── unit │ │ ├── .gitkeep │ │ └── DbTest.php ├── vendor │ ├── .gitkeep │ ├── autoload.php │ ├── bin │ │ ├── dbunit │ │ └── phpunit │ ├── composer │ │ ├── ClassLoader.php │ │ ├── autoload_classmap.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── include_paths.php │ │ └── installed.json │ ├── html2pdf │ │ ├── _LGPL.txt │ │ ├── _changelog.txt │ │ ├── _class │ │ │ ├── exception.class.php │ │ │ ├── locale.class.php │ │ │ ├── myPdf.class.php │ │ │ ├── parsingCss.class.php │ │ │ ├── parsingHtml.class.php │ │ │ └── tcpdfConfig.php │ │ ├── _lisez_moi.txt │ │ ├── _read_me.txt │ │ ├── _tcpdf_5.0.002 │ │ │ ├── 2dbarcodes.php │ │ │ ├── CHANGELOG.TXT │ │ │ ├── LICENSE.TXT │ │ │ ├── README.TXT │ │ │ ├── barcodes.php │ │ │ ├── cache │ │ │ │ ├── chapter_demo_1.txt │ │ │ │ ├── chapter_demo_2.txt │ │ │ │ ├── table_data_demo.txt │ │ │ │ └── utf8test.txt │ │ │ ├── config │ │ │ │ ├── lang │ │ │ │ │ ├── bra.php │ │ │ │ │ ├── eng.php │ │ │ │ │ ├── ger.php │ │ │ │ │ └── ita.php │ │ │ │ ├── tcpdf_config.php │ │ │ │ └── tcpdf_config_alt.php │ │ │ ├── doc │ │ │ │ └── read_me.txt │ │ │ ├── examples │ │ │ │ └── read_me.txt │ │ │ ├── fonts │ │ │ │ ├── README.TXT │ │ │ │ ├── ZarBold.ctg.z │ │ │ │ ├── ZarBold.z │ │ │ │ ├── almohanad.ctg.z │ │ │ │ ├── almohanad.php │ │ │ │ ├── almohanad.z │ │ │ │ ├── arialunicid0.php │ │ │ │ ├── courier.php │ │ │ │ ├── dejavu-fonts-ttf-2.30 │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── BUGS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── NEWS │ │ │ │ │ ├── README │ │ │ │ │ ├── langcover.txt │ │ │ │ │ ├── status.txt │ │ │ │ │ └── unicover.txt │ │ │ │ ├── dejavusans.ctg.z │ │ │ │ ├── dejavusans.php │ │ │ │ ├── dejavusans.z │ │ │ │ ├── dejavusansb.ctg.z │ │ │ │ ├── dejavusansb.php │ │ │ │ ├── dejavusansb.z │ │ │ │ ├── dejavusansbi.ctg.z │ │ │ │ ├── dejavusansbi.php │ │ │ │ ├── dejavusansbi.z │ │ │ │ ├── dejavusanscondensed.ctg.z │ │ │ │ ├── dejavusanscondensed.php │ │ │ │ ├── dejavusanscondensed.z │ │ │ │ ├── dejavusanscondensedb.ctg.z │ │ │ │ ├── dejavusanscondensedb.php │ │ │ │ ├── dejavusanscondensedb.z │ │ │ │ ├── dejavusanscondensedbi.ctg.z │ │ │ │ ├── dejavusanscondensedbi.php │ │ │ │ ├── dejavusanscondensedbi.z │ │ │ │ ├── dejavusanscondensedi.ctg.z │ │ │ │ ├── dejavusanscondensedi.php │ │ │ │ ├── dejavusanscondensedi.z │ │ │ │ ├── dejavusansi.ctg.z │ │ │ │ ├── dejavusansi.php │ │ │ │ ├── dejavusansi.z │ │ │ │ ├── dejavusansmono.ctg.z │ │ │ │ ├── dejavusansmono.php │ │ │ │ ├── dejavusansmono.z │ │ │ │ ├── dejavusansmonob.ctg.z │ │ │ │ ├── dejavusansmonob.php │ │ │ │ ├── dejavusansmonob.z │ │ │ │ ├── dejavusansmonobi.ctg.z │ │ │ │ ├── dejavusansmonobi.php │ │ │ │ ├── dejavusansmonobi.z │ │ │ │ ├── dejavusansmonoi.ctg.z │ │ │ │ ├── dejavusansmonoi.php │ │ │ │ ├── dejavusansmonoi.z │ │ │ │ ├── dejavuserif.ctg.z │ │ │ │ ├── dejavuserif.php │ │ │ │ ├── dejavuserif.z │ │ │ │ ├── dejavuserifb.ctg.z │ │ │ │ ├── dejavuserifb.php │ │ │ │ ├── dejavuserifb.z │ │ │ │ ├── dejavuserifbi.ctg.z │ │ │ │ ├── dejavuserifbi.php │ │ │ │ ├── dejavuserifbi.z │ │ │ │ ├── dejavuserifcondensed.ctg.z │ │ │ │ ├── dejavuserifcondensed.php │ │ │ │ ├── dejavuserifcondensed.z │ │ │ │ ├── dejavuserifcondensedb.ctg.z │ │ │ │ ├── dejavuserifcondensedb.php │ │ │ │ ├── dejavuserifcondensedb.z │ │ │ │ ├── dejavuserifcondensedbi.ctg.z │ │ │ │ ├── dejavuserifcondensedbi.php │ │ │ │ ├── dejavuserifcondensedbi.z │ │ │ │ ├── dejavuserifcondensedi.ctg.z │ │ │ │ ├── dejavuserifcondensedi.php │ │ │ │ ├── dejavuserifcondensedi.z │ │ │ │ ├── dejavuserifi.ctg.z │ │ │ │ ├── dejavuserifi.php │ │ │ │ ├── dejavuserifi.z │ │ │ │ ├── freefont-20090104 │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── CREDITS │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── INSTALL │ │ │ │ │ └── README │ │ │ │ ├── freemono.ctg.z │ │ │ │ ├── freemono.php │ │ │ │ ├── freemono.z │ │ │ │ ├── freemonob.ctg.z │ │ │ │ ├── freemonob.php │ │ │ │ ├── freemonob.z │ │ │ │ ├── freemonobi.ctg.z │ │ │ │ ├── freemonobi.php │ │ │ │ ├── freemonobi.z │ │ │ │ ├── freemonoi.ctg.z │ │ │ │ ├── freemonoi.php │ │ │ │ ├── freemonoi.z │ │ │ │ ├── freesans.ctg.z │ │ │ │ ├── freesans.php │ │ │ │ ├── freesans.z │ │ │ │ ├── freesansb.ctg.z │ │ │ │ ├── freesansb.php │ │ │ │ ├── freesansb.z │ │ │ │ ├── freesansbi.ctg.z │ │ │ │ ├── freesansbi.php │ │ │ │ ├── freesansbi.z │ │ │ │ ├── freesansi.ctg.z │ │ │ │ ├── freesansi.php │ │ │ │ ├── freesansi.z │ │ │ │ ├── freeserif.ctg.z │ │ │ │ ├── freeserif.php │ │ │ │ ├── freeserif.z │ │ │ │ ├── freeserifb.ctg.z │ │ │ │ ├── freeserifb.php │ │ │ │ ├── freeserifb.z │ │ │ │ ├── freeserifbi.ctg.z │ │ │ │ ├── freeserifbi.php │ │ │ │ ├── freeserifbi.z │ │ │ │ ├── freeserifi.ctg.z │ │ │ │ ├── freeserifi.php │ │ │ │ ├── freeserifi.z │ │ │ │ ├── helvetica.php │ │ │ │ ├── helveticab.php │ │ │ │ ├── helveticabi.php │ │ │ │ ├── helveticai.php │ │ │ │ ├── hysmyeongjostdmedium.php │ │ │ │ ├── kozgopromedium.php │ │ │ │ ├── kozminproregular.php │ │ │ │ ├── msungstdlight.php │ │ │ │ ├── stsongstdlight.php │ │ │ │ ├── symbol.php │ │ │ │ ├── times.php │ │ │ │ ├── timesb.php │ │ │ │ ├── timesbi.php │ │ │ │ ├── timesi.php │ │ │ │ ├── uni2cid_ac15.php │ │ │ │ ├── uni2cid_ag15.php │ │ │ │ ├── uni2cid_aj16.php │ │ │ │ ├── uni2cid_ak12.php │ │ │ │ ├── utils │ │ │ │ │ ├── README.TXT │ │ │ │ │ ├── enc │ │ │ │ │ │ ├── cp1250.map │ │ │ │ │ │ ├── cp1251.map │ │ │ │ │ │ ├── cp1252.map │ │ │ │ │ │ ├── cp1253.map │ │ │ │ │ │ ├── cp1254.map │ │ │ │ │ │ ├── cp1255.map │ │ │ │ │ │ ├── cp1257.map │ │ │ │ │ │ ├── cp1258.map │ │ │ │ │ │ ├── cp874.map │ │ │ │ │ │ ├── iso-8859-1.map │ │ │ │ │ │ ├── iso-8859-11.map │ │ │ │ │ │ ├── iso-8859-15.map │ │ │ │ │ │ ├── iso-8859-16.map │ │ │ │ │ │ ├── iso-8859-2.map │ │ │ │ │ │ ├── iso-8859-4.map │ │ │ │ │ │ ├── iso-8859-5.map │ │ │ │ │ │ ├── iso-8859-7.map │ │ │ │ │ │ ├── iso-8859-9.map │ │ │ │ │ │ ├── koi8-r.map │ │ │ │ │ │ └── koi8-u.map │ │ │ │ │ ├── freetype6.dll │ │ │ │ │ ├── makeallttffonts.php │ │ │ │ │ ├── makefont.php │ │ │ │ │ ├── pfm2afm │ │ │ │ │ ├── pfm2afm.exe │ │ │ │ │ ├── src │ │ │ │ │ │ ├── pfm2afm-src.tar.gz │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ └── ttf2ufm-src.tar.gz │ │ │ │ │ ├── ttf2ufm │ │ │ │ │ ├── ttf2ufm.exe │ │ │ │ │ └── zlib1.dll │ │ │ │ ├── zapfdingbats.php │ │ │ │ └── zarbold.php │ │ │ ├── htmlcolors.php │ │ │ ├── images │ │ │ │ └── read_me.txt │ │ │ ├── qrcode.php │ │ │ ├── tcpdf.crt │ │ │ ├── tcpdf.fdf │ │ │ ├── tcpdf.php │ │ │ └── unicode_data.php │ │ ├── examples │ │ │ ├── about.php │ │ │ ├── bookmark.php │ │ │ ├── exemple00.php │ │ │ ├── exemple01.php │ │ │ ├── exemple02.php │ │ │ ├── exemple03.php │ │ │ ├── exemple04.php │ │ │ ├── exemple05.php │ │ │ ├── exemple06.php │ │ │ ├── exemple07.php │ │ │ ├── exemple08.php │ │ │ ├── exemple09.php │ │ │ ├── exemple10.php │ │ │ ├── exemple11.php │ │ │ ├── exemple12.php │ │ │ ├── exemple13.php │ │ │ ├── forms.php │ │ │ ├── groups.php │ │ │ ├── js1.php │ │ │ ├── js2.php │ │ │ ├── js3.php │ │ │ ├── qrcode.php │ │ │ ├── radius.php │ │ │ ├── regle.php │ │ │ ├── res │ │ │ │ ├── about.php │ │ │ │ ├── bas_page.png │ │ │ │ ├── exemple00.php │ │ │ │ ├── exemple01.php │ │ │ │ ├── exemple02.php │ │ │ │ ├── exemple03.php │ │ │ │ ├── exemple04.php │ │ │ │ ├── exemple05.php │ │ │ │ ├── exemple06.css │ │ │ │ ├── exemple06.php │ │ │ │ ├── exemple07a.php │ │ │ │ ├── exemple07b.php │ │ │ │ ├── exemple08.php │ │ │ │ ├── exemple09.png.php │ │ │ │ ├── exemple10.php │ │ │ │ ├── exemple10a.gif │ │ │ │ ├── exemple10b.jpg │ │ │ │ ├── exemple10c.gif │ │ │ │ ├── exemple11.php │ │ │ │ ├── exemple12.php │ │ │ │ ├── exemple13.php │ │ │ │ ├── forms.php │ │ │ │ ├── logo.gif │ │ │ │ ├── logo.png │ │ │ │ ├── off.png │ │ │ │ ├── puce.gif │ │ │ │ ├── puce2.gif │ │ │ │ ├── regle.png │ │ │ │ ├── svg.php │ │ │ │ └── tcpdf_logo.jpg │ │ │ ├── svg.php │ │ │ ├── svg_tiger.php │ │ │ ├── svg_tree.php │ │ │ ├── ticket.php │ │ │ └── utf8.php │ │ ├── html2pdf.class.php │ │ └── locale │ │ │ ├── ca.csv │ │ │ ├── cs.csv │ │ │ ├── da.csv │ │ │ ├── de.csv │ │ │ ├── en.csv │ │ │ ├── es.csv │ │ │ ├── fr.csv │ │ │ ├── it.csv │ │ │ ├── nl.csv │ │ │ ├── pt.csv │ │ │ └── tr.csv │ ├── phpunit │ │ ├── dbunit │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── ChangeLog.markdown │ │ │ ├── LICENSE │ │ │ ├── PHPUnit │ │ │ │ └── Extensions │ │ │ │ │ └── Database │ │ │ │ │ ├── AbstractTester.php │ │ │ │ │ ├── Autoload.php │ │ │ │ │ ├── Autoload.php.in │ │ │ │ │ ├── Constraint │ │ │ │ │ ├── DataSetIsEqual.php │ │ │ │ │ ├── TableIsEqual.php │ │ │ │ │ └── TableRowCount.php │ │ │ │ │ ├── DB │ │ │ │ │ ├── DataSet.php │ │ │ │ │ ├── DefaultDatabaseConnection.php │ │ │ │ │ ├── FilteredDataSet.php │ │ │ │ │ ├── IDatabaseConnection.php │ │ │ │ │ ├── IMetaData.php │ │ │ │ │ ├── MetaData.php │ │ │ │ │ ├── MetaData │ │ │ │ │ │ ├── Dblib.php │ │ │ │ │ │ ├── Firebird.php │ │ │ │ │ │ ├── InformationSchema.php │ │ │ │ │ │ ├── MySQL.php │ │ │ │ │ │ ├── Oci.php │ │ │ │ │ │ ├── PgSQL.php │ │ │ │ │ │ ├── SqlSrv.php │ │ │ │ │ │ └── Sqlite.php │ │ │ │ │ ├── ResultSetTable.php │ │ │ │ │ ├── Table.php │ │ │ │ │ ├── TableIterator.php │ │ │ │ │ └── TableMetaData.php │ │ │ │ │ ├── DataSet │ │ │ │ │ ├── AbstractDataSet.php │ │ │ │ │ ├── AbstractTable.php │ │ │ │ │ ├── AbstractTableMetaData.php │ │ │ │ │ ├── AbstractXmlDataSet.php │ │ │ │ │ ├── ArrayDataSet.php │ │ │ │ │ ├── CompositeDataSet.php │ │ │ │ │ ├── CsvDataSet.php │ │ │ │ │ ├── DataSetFilter.php │ │ │ │ │ ├── DefaultDataSet.php │ │ │ │ │ ├── DefaultTable.php │ │ │ │ │ ├── DefaultTableIterator.php │ │ │ │ │ ├── DefaultTableMetaData.php │ │ │ │ │ ├── FlatXmlDataSet.php │ │ │ │ │ ├── IDataSet.php │ │ │ │ │ ├── IPersistable.php │ │ │ │ │ ├── ISpec.php │ │ │ │ │ ├── ITable.php │ │ │ │ │ ├── ITableIterator.php │ │ │ │ │ ├── ITableMetaData.php │ │ │ │ │ ├── IYamlParser.php │ │ │ │ │ ├── MysqlXmlDataSet.php │ │ │ │ │ ├── Persistors │ │ │ │ │ │ ├── Abstract.php │ │ │ │ │ │ ├── Factory.php │ │ │ │ │ │ ├── FlatXml.php │ │ │ │ │ │ ├── MysqlXml.php │ │ │ │ │ │ ├── Xml.php │ │ │ │ │ │ └── Yaml.php │ │ │ │ │ ├── QueryDataSet.php │ │ │ │ │ ├── QueryTable.php │ │ │ │ │ ├── ReplacementDataSet.php │ │ │ │ │ ├── ReplacementTable.php │ │ │ │ │ ├── ReplacementTableIterator.php │ │ │ │ │ ├── Specs │ │ │ │ │ │ ├── Csv.php │ │ │ │ │ │ ├── DbQuery.php │ │ │ │ │ │ ├── DbTable.php │ │ │ │ │ │ ├── Factory.php │ │ │ │ │ │ ├── FlatXml.php │ │ │ │ │ │ ├── IFactory.php │ │ │ │ │ │ ├── Xml.php │ │ │ │ │ │ └── Yaml.php │ │ │ │ │ ├── SymfonyYamlParser.php │ │ │ │ │ ├── TableFilter.php │ │ │ │ │ ├── TableMetaDataFilter.php │ │ │ │ │ ├── XmlDataSet.php │ │ │ │ │ └── YamlDataSet.php │ │ │ │ │ ├── DefaultTester.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── IDatabaseListConsumer.php │ │ │ │ │ ├── ITester.php │ │ │ │ │ ├── Operation │ │ │ │ │ ├── Composite.php │ │ │ │ │ ├── Delete.php │ │ │ │ │ ├── DeleteAll.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── IDatabaseOperation.php │ │ │ │ │ ├── Insert.php │ │ │ │ │ ├── Null.php │ │ │ │ │ ├── Replace.php │ │ │ │ │ ├── RowBased.php │ │ │ │ │ ├── Truncate.php │ │ │ │ │ └── Update.php │ │ │ │ │ ├── TestCase.php │ │ │ │ │ └── UI │ │ │ │ │ ├── Command.php │ │ │ │ │ ├── Context.php │ │ │ │ │ ├── IMedium.php │ │ │ │ │ ├── IMediumPrinter.php │ │ │ │ │ ├── IMode.php │ │ │ │ │ ├── IModeFactory.php │ │ │ │ │ ├── InvalidModeException.php │ │ │ │ │ ├── Mediums │ │ │ │ │ └── Text.php │ │ │ │ │ ├── ModeFactory.php │ │ │ │ │ └── Modes │ │ │ │ │ ├── ExportDataSet.php │ │ │ │ │ └── ExportDataSet │ │ │ │ │ └── Arguments.php │ │ │ ├── Samples │ │ │ │ └── BankAccountDB │ │ │ │ │ ├── BankAccount.php │ │ │ │ │ ├── BankAccountCompositeTest.php │ │ │ │ │ ├── BankAccountDBTest.php │ │ │ │ │ ├── BankAccountDBTestMySQL.php │ │ │ │ │ ├── BankAccountDBTestSQLite.php │ │ │ │ │ └── _files │ │ │ │ │ ├── bank-account-after-deposits.xml │ │ │ │ │ ├── bank-account-after-new-account.xml │ │ │ │ │ ├── bank-account-after-withdrawals.xml │ │ │ │ │ └── bank-account-seed.xml │ │ │ ├── Tests │ │ │ │ ├── Constraint │ │ │ │ │ └── TableRowCountTest.php │ │ │ │ ├── DB │ │ │ │ │ └── DefaultDatabaseConnectionTest.php │ │ │ │ ├── DataSet │ │ │ │ │ ├── AbstractTableTest.php │ │ │ │ │ ├── CompositeDataSetTest.php │ │ │ │ │ ├── CsvDataSetTest.php │ │ │ │ │ ├── FilterTest.php │ │ │ │ │ ├── PersistorTest.php │ │ │ │ │ ├── QueryDataSetTest.php │ │ │ │ │ ├── QueryTableTest.php │ │ │ │ │ ├── ReplacementDataSetTest.php │ │ │ │ │ ├── ReplacementTableTest.php │ │ │ │ │ ├── XmlDataSetsTest.php │ │ │ │ │ └── YamlDataSetTest.php │ │ │ │ ├── Operation │ │ │ │ │ ├── OperationsMySQLTest.php │ │ │ │ │ ├── OperationsTest.php │ │ │ │ │ └── RowBasedTest.php │ │ │ │ └── _files │ │ │ │ │ ├── CsvDataSets │ │ │ │ │ ├── table1.csv │ │ │ │ │ └── table2.csv │ │ │ │ │ ├── DatabaseTestUtility.php │ │ │ │ │ ├── XmlDataSets │ │ │ │ │ ├── AllEmptyTableInsertResult.xml │ │ │ │ │ ├── AllEmptyTableInsertTest.xml │ │ │ │ │ ├── DeleteAllOperationTest.xml │ │ │ │ │ ├── DeleteOperationResult.xml │ │ │ │ │ ├── DeleteOperationTest.xml │ │ │ │ │ ├── EmptyTableInsertResult.xml │ │ │ │ │ ├── EmptyTableInsertTest.xml │ │ │ │ │ ├── FilteredTestComparison.xml │ │ │ │ │ ├── FilteredTestFixture.xml │ │ │ │ │ ├── FlatXmlDataSet.xml │ │ │ │ │ ├── FlatXmlWriter.xml │ │ │ │ │ ├── FlatXmlWriterEntities.xml │ │ │ │ │ ├── InsertOperationResult.xml │ │ │ │ │ ├── InsertOperationTest.xml │ │ │ │ │ ├── MysqlXmlDataSet.xml │ │ │ │ │ ├── OperationsMySQLTestFixture.xml │ │ │ │ │ ├── OperationsTestFixture.xml │ │ │ │ │ ├── QueryDataSetTest.xml │ │ │ │ │ ├── ReplaceOperationResult.xml │ │ │ │ │ ├── ReplaceOperationTest.xml │ │ │ │ │ ├── RowBasedExecute.xml │ │ │ │ │ ├── TruncateCompositeTest.xml │ │ │ │ │ ├── UpdateOperationResult.xml │ │ │ │ │ ├── UpdateOperationTest.xml │ │ │ │ │ ├── XmlDataSet.xml │ │ │ │ │ ├── XmlWriter.xml │ │ │ │ │ └── XmlWriterEntities.xml │ │ │ │ │ └── YamlDataSets │ │ │ │ │ └── testDataSet.yaml │ │ │ ├── Vagrantfile │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ ├── PHPCS │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ │ └── Whitespace │ │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── phpmd.xml │ │ │ │ ├── travis-ci.sh │ │ │ │ ├── travis-ci.xml │ │ │ │ └── vagrant.sh │ │ │ ├── composer.json │ │ │ ├── composer │ │ │ │ └── bin │ │ │ │ │ └── dbunit │ │ │ ├── dbunit.bat │ │ │ ├── dbunit.php │ │ │ ├── package.xml │ │ │ └── phpunit.xml.dist │ │ ├── php-code-coverage │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── PHP │ │ │ │ ├── CodeCoverage.php │ │ │ │ └── CodeCoverage │ │ │ │ │ ├── Autoload.php │ │ │ │ │ ├── Autoload.php.in │ │ │ │ │ ├── Driver.php │ │ │ │ │ ├── Driver │ │ │ │ │ └── Xdebug.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── Filter.php │ │ │ │ │ ├── Report │ │ │ │ │ ├── Clover.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── HTML.php │ │ │ │ │ ├── HTML │ │ │ │ │ │ ├── Renderer.php │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ │ └── Template │ │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ ├── nv.d3.css │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ ├── d3.min.js │ │ │ │ │ │ │ ├── html5shiv.js │ │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ │ └── nv.d3.min.js │ │ │ │ │ │ │ └── method_item.html.dist │ │ │ │ │ ├── Node.php │ │ │ │ │ ├── Node │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Iterator.php │ │ │ │ │ ├── PHP.php │ │ │ │ │ └── Text.php │ │ │ │ │ ├── Util.php │ │ │ │ │ ├── Util │ │ │ │ │ └── InvalidArgumentHelper.php │ │ │ │ │ └── Version.php │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── PHP │ │ │ │ │ ├── CodeCoverage │ │ │ │ │ │ ├── FilterTest.php │ │ │ │ │ │ ├── Report │ │ │ │ │ │ │ ├── CloverTest.php │ │ │ │ │ │ │ └── FactoryTest.php │ │ │ │ │ │ └── UtilTest.php │ │ │ │ │ └── CodeCoverageTest.php │ │ │ │ ├── TestCase.php │ │ │ │ └── _files │ │ │ │ │ ├── BankAccount-clover.xml │ │ │ │ │ ├── BankAccount.php │ │ │ │ │ ├── BankAccountTest.php │ │ │ │ │ ├── CoverageClassExtendedTest.php │ │ │ │ │ ├── CoverageClassTest.php │ │ │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ │ │ ├── CoverageFunctionTest.php │ │ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ │ │ ├── CoverageMethodParenthesesTest.php │ │ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ │ │ │ ├── CoverageMethodTest.php │ │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ │ ├── CoverageNotPrivateTest.php │ │ │ │ │ ├── CoverageNotProtectedTest.php │ │ │ │ │ ├── CoverageNotPublicTest.php │ │ │ │ │ ├── CoverageNothingTest.php │ │ │ │ │ ├── CoveragePrivateTest.php │ │ │ │ │ ├── CoverageProtectedTest.php │ │ │ │ │ ├── CoveragePublicTest.php │ │ │ │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ │ │ │ ├── CoveredClass.php │ │ │ │ │ ├── CoveredFunction.php │ │ │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ │ │ │ ├── NamespaceCoverageCoversClassTest.php │ │ │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ │ │ ├── NamespaceCoveredClass.php │ │ │ │ │ ├── NotExistingCoveredElementTest.php │ │ │ │ │ ├── class-with-anonymous-function-clover.xml │ │ │ │ │ ├── ignored-lines-clover.xml │ │ │ │ │ ├── source_with_class_and_anonymous_function.php │ │ │ │ │ ├── source_with_ignore.php │ │ │ │ │ ├── source_with_namespace.php │ │ │ │ │ ├── source_with_oneline_annotations.php │ │ │ │ │ ├── source_without_ignore.php │ │ │ │ │ └── source_without_namespace.php │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ ├── PHPCS │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ │ └── Whitespace │ │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── phpmd.xml │ │ │ │ └── travis-ci.xml │ │ │ ├── composer.json │ │ │ ├── package.xml │ │ │ ├── phpunit.xml.dist │ │ │ └── scripts │ │ │ │ ├── auto_append.php │ │ │ │ └── auto_prepend.php │ │ ├── php-file-iterator │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Facade.php │ │ │ │ ├── Factory.php │ │ │ │ └── Iterator.php │ │ ├── php-text-template │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ └── Template.php │ │ ├── php-timer │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── src │ │ │ │ └── Timer.php │ │ │ └── tests │ │ │ │ └── TimerTest.php │ │ ├── php-token-stream │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── PHP │ │ │ │ ├── Token.php │ │ │ │ └── Token │ │ │ │ │ ├── Stream.php │ │ │ │ │ └── Stream │ │ │ │ │ ├── Autoload.php │ │ │ │ │ ├── Autoload.php.in │ │ │ │ │ └── CachingFactory.php │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── Token │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ ├── ClosureTest.php │ │ │ │ │ ├── FunctionTest.php │ │ │ │ │ ├── IncludeTest.php │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ └── NamespaceTest.php │ │ │ │ ├── TokenTest.php │ │ │ │ └── _files │ │ │ │ │ ├── classExtendsNamespacedClass.php │ │ │ │ │ ├── classInNamespace.php │ │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ │ ├── closure.php │ │ │ │ │ ├── issue19.php │ │ │ │ │ ├── issue30.php │ │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ │ │ ├── source.php │ │ │ │ │ ├── source2.php │ │ │ │ │ ├── source3.php │ │ │ │ │ ├── source4.php │ │ │ │ │ └── source5.php │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ ├── PHPCS │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ │ └── Whitespace │ │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ │ └── ruleset.xml │ │ │ │ └── phpmd.xml │ │ │ ├── composer.json │ │ │ ├── package.xml │ │ │ └── phpunit.xml.dist │ │ └── phpunit-mock-objects │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── ChangeLog.markdown │ │ │ ├── LICENSE │ │ │ ├── PHPUnit │ │ │ └── Framework │ │ │ │ └── MockObject │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Match.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── Namespace.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Generator │ │ │ │ ├── mocked_class.tpl.dist │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ ├── mocked_object_method.tpl.dist │ │ │ │ ├── mocked_static_method.tpl.dist │ │ │ │ ├── trait_class.tpl.dist │ │ │ │ ├── unmocked_clone.tpl.dist │ │ │ │ ├── wsdl_class.tpl.dist │ │ │ │ └── wsdl_method.tpl.dist │ │ │ │ ├── Invocation.php │ │ │ │ ├── Invocation │ │ │ │ ├── Object.php │ │ │ │ └── Static.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Invokable.php │ │ │ │ ├── Matcher.php │ │ │ │ ├── Matcher │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ ├── AnyParameters.php │ │ │ │ ├── Invocation.php │ │ │ │ ├── InvokedAtIndex.php │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ ├── InvokedCount.php │ │ │ │ ├── InvokedRecorder.php │ │ │ │ ├── MethodName.php │ │ │ │ ├── Parameters.php │ │ │ │ └── StatelessInvocation.php │ │ │ │ ├── MockBuilder.php │ │ │ │ ├── MockObject.php │ │ │ │ ├── Stub.php │ │ │ │ ├── Stub │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ ├── Exception.php │ │ │ │ ├── MatcherCollection.php │ │ │ │ ├── Return.php │ │ │ │ ├── ReturnArgument.php │ │ │ │ ├── ReturnCallback.php │ │ │ │ ├── ReturnSelf.php │ │ │ │ └── ReturnValueMap.php │ │ │ │ └── Verifiable.php │ │ │ ├── Tests │ │ │ ├── GeneratorTest.php │ │ │ ├── MockBuilderTest.php │ │ │ ├── MockObject │ │ │ │ ├── Invocation │ │ │ │ │ ├── ObjectTest.php │ │ │ │ │ └── StaticTest.php │ │ │ │ ├── class.phpt │ │ │ │ ├── class_call_parent_clone.phpt │ │ │ │ ├── class_call_parent_constructor.phpt │ │ │ │ ├── class_dont_call_parent_clone.phpt │ │ │ │ ├── class_dont_call_parent_constructor.phpt │ │ │ │ ├── class_implementing_interface_call_parent_constructor.phpt │ │ │ │ ├── class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ │ ├── class_partial.phpt │ │ │ │ ├── interface.phpt │ │ │ │ ├── invocation_object_clone_object.phpt │ │ │ │ ├── invocation_static_clone_object.phpt │ │ │ │ ├── namespaced_class.phpt │ │ │ │ ├── namespaced_class_call_parent_clone.phpt │ │ │ │ ├── namespaced_class_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_dont_call_parent_clone.phpt │ │ │ │ ├── namespaced_class_dont_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_partial.phpt │ │ │ │ ├── namespaced_interface.phpt │ │ │ │ ├── nonexistent_class.phpt │ │ │ │ ├── nonexistent_class_with_namespace.phpt │ │ │ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt │ │ │ │ ├── wsdl_class.phpt │ │ │ │ ├── wsdl_class_namespace.phpt │ │ │ │ └── wsdl_class_partial.phpt │ │ │ ├── MockObjectTest.php │ │ │ └── _files │ │ │ │ ├── AbstractMockTestClass.php │ │ │ │ ├── AnInterface.php │ │ │ │ ├── FunctionCallback.php │ │ │ │ ├── GoogleSearch.wsdl │ │ │ │ ├── MethodCallback.php │ │ │ │ ├── MethodCallbackByReference.php │ │ │ │ ├── Mockable.php │ │ │ │ ├── PartialMockTestClass.php │ │ │ │ ├── SomeClass.php │ │ │ │ └── StaticMockTestClass.php │ │ │ ├── build.xml │ │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ ├── phpmd.xml │ │ │ └── travis-ci.xml │ │ │ ├── composer.json │ │ │ ├── package.xml │ │ │ └── phpunit.xml.dist │ ├── sebastian │ │ ├── comparator │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── travis-ci.xml │ │ │ ├── composer.json │ │ │ ├── phpunit.xml.dist │ │ │ ├── src │ │ │ │ ├── ArrayComparator.php │ │ │ │ ├── Comparator.php │ │ │ │ ├── ComparisonFailure.php │ │ │ │ ├── DOMNodeComparator.php │ │ │ │ ├── DateTimeComparator.php │ │ │ │ ├── DoubleComparator.php │ │ │ │ ├── ExceptionComparator.php │ │ │ │ ├── Factory.php │ │ │ │ ├── MockObjectComparator.php │ │ │ │ ├── NumericComparator.php │ │ │ │ ├── ObjectComparator.php │ │ │ │ ├── ResourceComparator.php │ │ │ │ ├── ScalarComparator.php │ │ │ │ ├── SplObjectStorageComparator.php │ │ │ │ └── TypeComparator.php │ │ │ └── tests │ │ │ │ ├── ArrayComparatorTest.php │ │ │ │ ├── DOMNodeComparatorTest.php │ │ │ │ ├── DateTimeComparatorTest.php │ │ │ │ ├── DoubleComparatorTest.php │ │ │ │ ├── ExceptionComparatorTest.php │ │ │ │ ├── FactoryTest.php │ │ │ │ ├── MockObjectComparatorTest.php │ │ │ │ ├── NumericComparatorTest.php │ │ │ │ ├── ObjectComparatorTest.php │ │ │ │ ├── ResourceComparatorTest.php │ │ │ │ ├── ScalarComparatorTest.php │ │ │ │ ├── SplObjectStorageComparatorTest.php │ │ │ │ ├── TypeComparatorTest.php │ │ │ │ ├── _files │ │ │ │ ├── Author.php │ │ │ │ ├── Book.php │ │ │ │ ├── ClassWithToString.php │ │ │ │ ├── SampleClass.php │ │ │ │ ├── Struct.php │ │ │ │ ├── TestClass.php │ │ │ │ └── TestClassComparator.php │ │ │ │ ├── autoload.php │ │ │ │ └── bootstrap.php │ │ ├── diff │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build.xml │ │ │ ├── composer.json │ │ │ ├── phpunit.xml.dist │ │ │ ├── src │ │ │ │ ├── Chunk.php │ │ │ │ ├── Diff.php │ │ │ │ ├── Differ.php │ │ │ │ ├── LCS │ │ │ │ │ ├── LongestCommonSubsequence.php │ │ │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php │ │ │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php │ │ │ │ ├── Line.php │ │ │ │ └── Parser.php │ │ │ └── tests │ │ │ │ ├── DifferTest.php │ │ │ │ ├── LCS │ │ │ │ └── TimeEfficientImplementationTest.php │ │ │ │ ├── ParserTest.php │ │ │ │ └── fixtures │ │ │ │ ├── patch.txt │ │ │ │ └── patch2.txt │ │ ├── exporter │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build.xml │ │ │ ├── composer.json │ │ │ ├── phpunit.xml.dist │ │ │ ├── src │ │ │ │ └── Exporter.php │ │ │ └── tests │ │ │ │ └── ExporterTest.php │ │ └── recursion-context │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build.xml │ │ │ ├── composer.json │ │ │ ├── phpunit.xml.dist │ │ │ ├── src │ │ │ ├── Context.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ │ └── tests │ │ │ └── ContextTest.php │ └── symfony │ │ └── yaml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── Dumper.php │ │ ├── Escaper.php │ │ ├── Exception │ │ ├── DumpException.php │ │ ├── ExceptionInterface.php │ │ ├── ParseException.php │ │ └── RuntimeException.php │ │ ├── Inline.php │ │ ├── LICENSE │ │ ├── Parser.php │ │ ├── README.md │ │ ├── Tests │ │ ├── DumperTest.php │ │ ├── Fixtures │ │ │ ├── YtsAnchorAlias.yml │ │ │ ├── YtsBasicTests.yml │ │ │ ├── YtsBlockMapping.yml │ │ │ ├── YtsDocumentSeparator.yml │ │ │ ├── YtsErrorTests.yml │ │ │ ├── YtsFlowCollections.yml │ │ │ ├── YtsFoldedScalars.yml │ │ │ ├── YtsNullsAndEmpties.yml │ │ │ ├── YtsSpecificationExamples.yml │ │ │ ├── YtsTypeTransfers.yml │ │ │ ├── embededPhp.yml │ │ │ ├── escapedCharacters.yml │ │ │ ├── index.yml │ │ │ ├── sfComments.yml │ │ │ ├── sfCompact.yml │ │ │ ├── sfMergeKey.yml │ │ │ ├── sfObjects.yml │ │ │ ├── sfQuotes.yml │ │ │ ├── sfTests.yml │ │ │ └── unindentedCollections.yml │ │ ├── InlineTest.php │ │ ├── ParseExceptionTest.php │ │ ├── ParserTest.php │ │ └── YamlTest.php │ │ ├── Unescaper.php │ │ ├── Yaml.php │ │ ├── composer.json │ │ └── phpunit.xml.dist ├── views │ ├── customer │ │ ├── _form.php │ │ ├── _search.php │ │ ├── _view.php │ │ ├── admin.php │ │ ├── create.php │ │ ├── index.php │ │ ├── update.php │ │ └── view.php │ ├── file │ │ ├── _form.php │ │ ├── _search.php │ │ ├── _view.php │ │ ├── admin.php │ │ ├── create.php │ │ ├── index.php │ │ ├── update.php │ │ └── view.php │ ├── issue │ │ ├── _form.php │ │ ├── _search.php │ │ ├── _view.php │ │ ├── admin.php │ │ ├── create.php │ │ ├── index.php │ │ ├── update.php │ │ └── view.php │ ├── layouts │ │ ├── column1.php │ │ ├── column2.php │ │ ├── main.php │ │ └── pdf.php │ ├── maintenance │ │ └── index.php │ ├── order │ │ ├── _form.php │ │ ├── _search.php │ │ ├── _view.php │ │ ├── admin.php │ │ ├── create.php │ │ ├── index.php │ │ ├── update.php │ │ └── view.php │ ├── orderItem │ │ ├── _form.php │ │ ├── _formItemToOrder.php │ │ ├── _search.php │ │ ├── _view.php │ │ ├── admin.php │ │ ├── create.php │ │ ├── createItemToOrder.php │ │ ├── index.php │ │ ├── update.php │ │ ├── updateSerialized.php │ │ └── view.php │ ├── orderItemSn │ │ ├── _form.php │ │ ├── _search.php │ │ ├── _view.php │ │ ├── admin.php │ │ ├── create.php │ │ ├── index.php │ │ ├── update.php │ │ └── view.php │ ├── part │ │ ├── _form.php │ │ ├── _search.php │ │ ├── _view.php │ │ ├── admin.php │ │ ├── create.php │ │ ├── index.php │ │ ├── suggestLocation.php │ │ ├── update.php │ │ ├── view.php │ │ └── view4html2pdf.php │ ├── project │ │ ├── _form.php │ │ ├── _search.php │ │ ├── _view.php │ │ ├── admin.php │ │ ├── create.php │ │ ├── index.php │ │ ├── update.php │ │ └── view.php │ ├── site │ │ ├── contact.php │ │ ├── error.php │ │ ├── index.php │ │ ├── login.php │ │ └── pages │ │ │ ├── about.php │ │ │ ├── files.php │ │ │ ├── help.php │ │ │ └── users.php │ ├── stock │ │ ├── _form.php │ │ ├── _search.php │ │ ├── _view.php │ │ ├── admin.php │ │ ├── create.php │ │ ├── index.php │ │ ├── update.php │ │ └── view.php │ ├── stockLocation │ │ ├── _form.php │ │ ├── _search.php │ │ ├── _view.php │ │ ├── admin.php │ │ ├── create.php │ │ ├── index.php │ │ ├── update.php │ │ └── view.php │ ├── stockSerial │ │ ├── _form.php │ │ ├── _search.php │ │ ├── _view.php │ │ ├── admin.php │ │ ├── create.php │ │ ├── index.php │ │ ├── update.php │ │ └── view.php │ └── user │ │ ├── _form.php │ │ ├── _search.php │ │ ├── _view.php │ │ ├── admin.php │ │ ├── create.php │ │ ├── index.php │ │ ├── update.php │ │ └── view.php ├── yii.php ├── yiic ├── yiic.bat └── yiic.php └── themes └── classic └── views ├── .htaccess ├── layouts └── .gitkeep ├── site └── .gitkeep └── system └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- 1 | # NetBeans project data 2 | nbproject 3 | 4 | # temporary files 5 | *.bak 6 | 7 | # Yii framework 8 | assets/* 9 | !assets/.gitignore 10 | protected/runtime/* 11 | !protected/runtime/.gitignore 12 | -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /css/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/css/bg.gif -------------------------------------------------------------------------------- /images/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/images/.gitkeep -------------------------------------------------------------------------------- /images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/images/calendar.png -------------------------------------------------------------------------------- /images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/images/cross.png -------------------------------------------------------------------------------- /images/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/images/pencil.png -------------------------------------------------------------------------------- /index-test.php: -------------------------------------------------------------------------------- 1 | run(); 16 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | run(); 14 | -------------------------------------------------------------------------------- /protected/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /protected/commands/shell/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/commands/shell/.gitkeep -------------------------------------------------------------------------------- /protected/components/ViewHelpers.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'fixture'=>array( 8 | 'class'=>'system.test.CDbFixtureManager', 9 | ), 10 | /* uncomment the following to provide test database connection 11 | 'db'=>array( 12 | 'connectionString'=>'DSN for test database', 13 | ), 14 | */ 15 | ), 16 | ) 17 | ); 18 | -------------------------------------------------------------------------------- /protected/controllers/MaintenanceController.php: -------------------------------------------------------------------------------- 1 | renderPartial("index"); 7 | } 8 | } -------------------------------------------------------------------------------- /protected/extensions/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/extensions/.gitkeep -------------------------------------------------------------------------------- /protected/extensions/yii-pdf/.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /protected/messages/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/messages/.gitkeep -------------------------------------------------------------------------------- /protected/migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/migrations/.gitkeep -------------------------------------------------------------------------------- /protected/modules/rbacui/assets/css/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/modules/rbacui/assets/css/images/grid.png -------------------------------------------------------------------------------- /protected/modules/rbacui/assets/css/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/modules/rbacui/assets/css/images/spinner.gif -------------------------------------------------------------------------------- /protected/modules/rbacui/models/AssignItemForm.php: -------------------------------------------------------------------------------- 1 | Yii::t('RbacuiModule.rbacui','Item'), 33 | ); 34 | } 35 | } -------------------------------------------------------------------------------- /protected/modules/rbacui/models/AttachItemForm.php: -------------------------------------------------------------------------------- 1 | Yii::t('RbacuiModule.rbacui','Name'), 33 | 'attachname'=>Yii::t('RbacuiModule.rbacui','Name'), 34 | ); 35 | } 36 | } -------------------------------------------------------------------------------- /protected/modules/rbacui/views/rbacui/_assignForm.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 | 9 | beginWidget('CActiveForm', array( 10 | 'id'=>'assign-item-form', 11 | 'enableAjaxValidation'=>true, 12 | )); ?> 13 | 14 | errorSummary($model); ?> 15 | 16 |
17 | labelEx($model,'item'); ?> 18 | dropDownList($model, 'item', array(), array('multiple'=>true, 'size'=>10, 'style'=>'width:200px;')); ?> 19 | error($model,'item'); ?> 20 |
21 | 22 |
23 | hiddenField($model,'type'); ?> 24 | hiddenField($model,'action'); ?> 25 |
26 | 27 | endWidget(); ?> 28 | 29 |
-------------------------------------------------------------------------------- /protected/modules/rbacui/views/rbacui/_attachForm.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 | 9 | beginWidget('CActiveForm', array( 10 | 'id'=>'attach-item-form', 11 | 'enableAjaxValidation'=>true, 12 | )); ?> 13 | 14 | errorSummary($model); ?> 15 | 16 |
17 | labelEx($model,'attachname'); ?> 18 | dropDownList($model, 'attachname', array()); ?> 19 | error($model,'attachname'); ?> 20 |
21 | 22 |
23 | hiddenField($model,'name'); ?> 24 | hiddenField($model,'action'); ?> 25 |
26 | 27 | endWidget(); ?> 28 | 29 |
-------------------------------------------------------------------------------- /protected/modules/rbacui/views/rbacui/hierarchy.php: -------------------------------------------------------------------------------- 1 | type] . ' level' . $level . '" title="' . $type[$item->type] . ': ' . $item->description . '">' . $item->name . ''; 11 | $level++; 12 | foreach($item->children as $name => $authItem) { 13 | showChildren($authItem, $level); 14 | } 15 | } 16 | 17 | foreach($roles as $name => $item) { 18 | showChildren($item, 0); 19 | } 20 | foreach($tasks as $name => $item) { 21 | showChildren($item, 0); 22 | } 23 | foreach($operations as $name => $item) { 24 | showChildren($item, 0); 25 | } 26 | ?> -------------------------------------------------------------------------------- /protected/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /protected/tests/WebTestCase.php: -------------------------------------------------------------------------------- 1 | setBrowserUrl(TEST_BASE_URL); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /protected/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /protected/tests/report/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /protected/tests/unit/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/tests/unit/.gitkeep -------------------------------------------------------------------------------- /protected/tests/unit/DbTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | $this->assertNotNull(Yii::app()->db->connectionString); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /protected/vendor/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/.gitkeep -------------------------------------------------------------------------------- /protected/vendor/autoload.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/symfony/yaml'), 10 | ); 11 | -------------------------------------------------------------------------------- /protected/vendor/composer/include_paths.php: -------------------------------------------------------------------------------- 1 | 7 | (http://www.acko.net/blog/ufpdf). That version has been further 8 | modified by Ulrich Telle for use with the wxWidgets component 9 | wxPdfDocument. 10 | 11 | Following changes where made: 12 | 13 | 1) Generated AFM files contain the glyph number for each character. 14 | 2) Generated UFM files contain the bounding box for each character. 15 | 3) OpenType support has been activated for the Windows binary, 16 | and the generated AFM/UFM files contain the associated 17 | original Unicode codes for each character. 18 | -------------------------------------------------------------------------------- /protected/vendor/html2pdf/_tcpdf_5.0.002/fonts/utils/src/ttf2ufm-src.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/html2pdf/_tcpdf_5.0.002/fonts/utils/src/ttf2ufm-src.tar.gz -------------------------------------------------------------------------------- /protected/vendor/html2pdf/_tcpdf_5.0.002/fonts/utils/ttf2ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/html2pdf/_tcpdf_5.0.002/fonts/utils/ttf2ufm -------------------------------------------------------------------------------- /protected/vendor/html2pdf/_tcpdf_5.0.002/fonts/utils/ttf2ufm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/html2pdf/_tcpdf_5.0.002/fonts/utils/ttf2ufm.exe -------------------------------------------------------------------------------- /protected/vendor/html2pdf/_tcpdf_5.0.002/fonts/utils/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/html2pdf/_tcpdf_5.0.002/fonts/utils/zlib1.dll -------------------------------------------------------------------------------- /protected/vendor/html2pdf/_tcpdf_5.0.002/images/read_me.txt: -------------------------------------------------------------------------------- 1 | download the TCPDF package to have this resources. 2 | 3 | it has been removed because of the size of the package of HTML2PDF... -------------------------------------------------------------------------------- /protected/vendor/html2pdf/_tcpdf_5.0.002/tcpdf.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/html2pdf/_tcpdf_5.0.002/tcpdf.fdf -------------------------------------------------------------------------------- /protected/vendor/html2pdf/_tcpdf_5.0.002/tcpdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/html2pdf/_tcpdf_5.0.002/tcpdf.php -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/exemple00.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple00.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert in PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | // $html2pdf->setModeDebug(); 25 | $html2pdf->setDefaultFont('Arial'); 26 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 27 | $html2pdf->Output('exemple00.pdf'); 28 | } 29 | catch(HTML2PDF_exception $e) { 30 | echo $e; 31 | exit; 32 | } 33 | -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/exemple01.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple01.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert in PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 25 | $html2pdf->Output('exemple01.pdf'); 26 | } 27 | catch(HTML2PDF_exception $e) { 28 | echo $e; 29 | exit; 30 | } 31 | -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/exemple02.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple02.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert in PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr', true, 'UTF-8', array(15, 5, 15, 5)); 24 | $html2pdf->pdf->SetDisplayMode('fullpage'); 25 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 26 | $html2pdf->Output('exemple02.pdf'); 27 | } 28 | catch(HTML2PDF_exception $e) { 29 | echo $e; 30 | exit; 31 | } 32 | 33 | -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/exemple03.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple03.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert to PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr', true, 'UTF-8', 3); 24 | $html2pdf->pdf->SetDisplayMode('fullpage'); 25 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 26 | $html2pdf->Output('exemple03.pdf'); 27 | } 28 | catch(HTML2PDF_exception $e) { 29 | echo $e; 30 | exit; 31 | } 32 | -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/exemple04.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple04.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert to PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | $html2pdf->pdf->SetDisplayMode('fullpage'); 25 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 26 | $html2pdf->Output('exemple04.pdf'); 27 | } 28 | catch(HTML2PDF_exception $e) { 29 | echo $e; 30 | exit; 31 | } 32 | -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/exemple05.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple05.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert to PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | $html2pdf->pdf->SetDisplayMode('fullpage'); 25 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 26 | $html2pdf->Output('exemple05.pdf'); 27 | } 28 | catch(HTML2PDF_exception $e) { 29 | echo $e; 30 | exit; 31 | } 32 | -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/exemple06.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple06.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert to PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 25 | $html2pdf->Output('exemple06.pdf'); 26 | } 27 | catch(HTML2PDF_exception $e) { 28 | echo $e; 29 | exit; 30 | } 31 | -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/exemple08.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple08.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert to PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr', true, 'UTF-8', 0); 24 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 25 | $html2pdf->Output('exemple08.pdf'); 26 | } 27 | catch(HTML2PDF_exception $e) { 28 | echo $e; 29 | exit; 30 | } 31 | -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/exemple10.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | ob_start(); 15 | include(dirname(__FILE__).'/res/exemple10.php'); 16 | $content = ob_get_clean(); 17 | 18 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 19 | try 20 | { 21 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 22 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 23 | $html2pdf->Output('exemple10.pdf'); 24 | } 25 | catch(HTML2PDF_exception $e) { 26 | echo $e; 27 | exit; 28 | } -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/exemple11.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple11.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert to PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | $html2pdf->setTestTdInOnePage(false); 25 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 26 | $html2pdf->Output('exemple11.pdf'); 27 | } 28 | catch(HTML2PDF_exception $e) { 29 | echo $e; 30 | exit; 31 | } 32 | -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/exemple12.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple12.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert to PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 25 | $html2pdf->Output('exemple12.pdf'); 26 | } 27 | catch(HTML2PDF_exception $e) { 28 | echo $e; 29 | exit; 30 | } 31 | -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/exemple13.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/exemple13.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert to PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 25 | $html2pdf->Output('exemple13.pdf'); 26 | } 27 | catch(HTML2PDF_exception $e) { 28 | echo $e; 29 | exit; 30 | } 31 | -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/res/bas_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/html2pdf/examples/res/bas_page.png -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/res/exemple06.css: -------------------------------------------------------------------------------- 1 | .titre 2 | { 3 | text-decoration: underline; 4 | } 5 | 6 | * {color: #FF0000; } 7 | H1 {color: #AA0055; } 8 | H2 {color: #990066; } 9 | H3 {color: #880077; } 10 | H4 {color: #770088; } 11 | H5 {color: #660099; } 12 | H6 {color: #5500AA; } -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/res/exemple09.png.php: -------------------------------------------------------------------------------- 1 | 20) $px = 20; 9 | if ($py>20) $py = 20; 10 | 11 | $width = 100; 12 | $height = 100; 13 | $im = imagecreatetruecolor($width, $height); 14 | 15 | for ($y=0; $y<$height; $y+= $py) { 16 | for ($x=0; $x<$width; $x+= $px) { 17 | $c = imagecolorallocate($im, 200-$x, 100+$y, 100+$x-$y); 18 | imagefilledrectangle($im, $x, $y, $x+$px, $y+$py, $c); 19 | } 20 | } 21 | 22 | header("Content-type: image/png"); 23 | imagepng($im); 24 | imagedestroy($im); 25 | -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/res/exemple10a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/html2pdf/examples/res/exemple10a.gif -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/res/exemple10b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/html2pdf/examples/res/exemple10b.jpg -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/res/exemple10c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/html2pdf/examples/res/exemple10c.gif -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/res/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/html2pdf/examples/res/logo.gif -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/html2pdf/examples/res/logo.png -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/res/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/html2pdf/examples/res/off.png -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/res/puce.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/html2pdf/examples/res/puce.gif -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/res/puce2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/html2pdf/examples/res/puce2.gif -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/res/regle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/html2pdf/examples/res/regle.png -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/res/tcpdf_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/html2pdf/examples/res/tcpdf_logo.jpg -------------------------------------------------------------------------------- /protected/vendor/html2pdf/examples/svg.php: -------------------------------------------------------------------------------- 1 | PDF convertor 6 | * distributed under the LGPL License 7 | * 8 | * @author Laurent MINGUET 9 | * 10 | * isset($_GET['vuehtml']) is not mandatory 11 | * it allow to display the result in the HTML format 12 | */ 13 | 14 | // get the HTML 15 | ob_start(); 16 | include(dirname(__FILE__).'/res/svg.php'); 17 | $content = ob_get_clean(); 18 | 19 | // convert into PDF 20 | require_once(dirname(__FILE__).'/../html2pdf.class.php'); 21 | try 22 | { 23 | $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 | $html2pdf->pdf->SetDisplayMode('fullpage'); 25 | $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 26 | $html2pdf->Output('svg.pdf'); 27 | } 28 | catch(HTML2PDF_exception $e) { 29 | echo $e; 30 | exit; 31 | } 32 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vagrant 3 | build/api 4 | build/code-browser 5 | build/coverage 6 | build/logs 7 | build/pdepend 8 | cache.properties 9 | composer.lock 10 | phpunit.xml 11 | vendor 12 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | before_script: ./build/travis-ci.sh 4 | 5 | php: 6 | - 5.3.3 7 | - 5.3 8 | - 5.4 9 | - 5.5 10 | - 5.6 11 | - hhvm 12 | 13 | script: bin/phpunit --configuration ./build/travis-ci.xml 14 | 15 | notifications: 16 | email: false 17 | irc: 18 | channels: 19 | - "irc.freenode.org#phpunit" 20 | use_notice: true 21 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/PHPUnit/Extensions/Database/Autoload.php.in: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | spl_autoload_register( 12 | function ($class) 13 | { 14 | static $classes = NULL; 15 | static $path = NULL; 16 | 17 | if ($classes === NULL) { 18 | $classes = array( 19 | ___CLASSLIST___ 20 | ); 21 | 22 | $path = dirname(dirname(dirname(__FILE__))); 23 | } 24 | 25 | $cn = strtolower($class); 26 | 27 | if (isset($classes[$cn])) { 28 | $file = $path . $classes[$cn]; 29 | 30 | require $file; 31 | } 32 | } 33 | ); 34 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/PHPUnit/Extensions/Database/DataSet/IYamlParser.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | /** 12 | * An interface for parsing YAML files. 13 | * 14 | * @package DbUnit 15 | * @author Yash Parghi 16 | * @copyright Sebastian Bergmann 17 | * @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License 18 | * @link http://www.phpunit.de/ 19 | * @since Class available since Release 1.3.1 20 | */ 21 | interface PHPUnit_Extensions_Database_DataSet_IYamlParser { 22 | 23 | /** 24 | * @param string $yamlFile 25 | * @return array parsed YAML 26 | */ 27 | public function parseYaml($yamlFile); 28 | } 29 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/PHPUnit/Extensions/Database/DataSet/SymfonyYamlParser.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | /** 12 | * The default YAML parser, using Symfony/Yaml. 13 | * 14 | * @package DbUnit 15 | * @author Yash Parghi 16 | * @copyright Sebastian Bergmann 17 | * @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License 18 | * @link http://www.phpunit.de/ 19 | * @since Class available since Release 1.3.1 20 | */ 21 | class PHPUnit_Extensions_Database_DataSet_SymfonyYamlParser implements PHPUnit_Extensions_Database_DataSet_IYamlParser { 22 | 23 | public function parseYaml($yamlFile) { 24 | return Symfony\Component\Yaml\Yaml::parse($yamlFile); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/PHPUnit/Extensions/Database/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | /** 12 | * Thrown for exceptions encountered with database operations. Provides 13 | * information regarding which operations failed and the query (if any) it 14 | * failed on. 15 | * 16 | * @package DbUnit 17 | * @author Mike Lively 18 | * @copyright 2010-2014 Mike Lively 19 | * @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License 20 | * @version Release: @package_version@ 21 | * @link http://www.phpunit.de/ 22 | * @since Class available since Release 1.0.0 23 | */ 24 | class PHPUnit_Extensions_Database_Exception extends Exception 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Samples/BankAccountDB/_files/bank-account-after-deposits.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Samples/BankAccountDB/_files/bank-account-after-new-account.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Samples/BankAccountDB/_files/bank-account-after-withdrawals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Samples/BankAccountDB/_files/bank-account-seed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/CsvDataSets/table1.csv: -------------------------------------------------------------------------------- 1 | table1_id,column1,column2,column3,column4 2 | 1,tgfahgasdf,200,34.64,"yghkf;a hahfg8ja h;" 3 | 2,hk;afg,654,46.54,24rwehhads 4 | 3,ha;gyt,462,1654.4,asfgklg 5 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/CsvDataSets/table2.csv: -------------------------------------------------------------------------------- 1 | table2_id,column5,column6,column7,column8 2 | 1,fhah,456,46.5,"fsdb, ghfdas" 3 | 2,asdhfoih,654,blah,"43asd ""fhgj"" sfadh" 4 | 3,ajsdlkfguitah,654,blah,"thesethasdl 5 | asdflkjsadf asdfsadfhl ""adsf, halsdf"" sadfhlasdf" 6 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/AllEmptyTableInsertResult.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/AllEmptyTableInsertTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/DeleteAllOperationTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/DeleteOperationResult.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/DeleteOperationTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/EmptyTableInsertResult.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/EmptyTableInsertTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/FilteredTestComparison.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/FilteredTestFixture.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/FlatXmlDataSet.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/FlatXmlWriter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 13 | 18 | 19 | 24 | 28 | 32 | 33 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/FlatXmlWriterEntities.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/InsertOperationTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/OperationsMySQLTestFixture.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/OperationsTestFixture.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/QueryDataSetTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 17 | 24 | 31 | 32 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/ReplaceOperationTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/RowBasedExecute.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/UpdateOperationResult.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/UpdateOperationTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/XmlWriter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | col1 5 | col2 6 | col3 7 | 8 | val1 9 | val2 10 | val3 11 | 12 | 13 | 14 | 15 | val4 16 | 17 | 18 | val5 19 | val6 20 | val7 21 | 22 |
23 | 24 | col1 25 | col2 26 | col3 27 |
28 |
29 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/XmlDataSets/XmlWriterEntities.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | col1 5 | col2 6 | 7 | 1 8 | <?xml version="1.0"?><myxml>test</myxml> 9 | 10 |
11 |
12 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Tests/_files/YamlDataSets/testDataSet.yaml: -------------------------------------------------------------------------------- 1 | table1: 2 | - 3 | table1_id: 1 4 | column1: "tgfahgasdf" 5 | column2: 200 6 | column3: 34.64 7 | column4: "yghkf;a hahfg8ja h;" 8 | - 9 | table1_id: 2 10 | column1: "hk;afg" 11 | column2: 654 12 | column3: 46.54 13 | column4: 24rwehhads 14 | extraColumn: 'causes no worries' 15 | - 16 | table1_id: 3 17 | column1: ha;gyt 18 | column2: 462 19 | column3: 1654.4 20 | column4: asfgklg 21 | table2: 22 | - 23 | table2_id: 1 24 | column5: fhah 25 | column6: 456 26 | column7: 46.5 27 | column8: "fsdb, ghfdas" 28 | - 29 | table2_id: 2 30 | column5: asdhfoih 31 | column6: 654 32 | column7: blah 33 | column8: "43asd \"fhgj\" sfadh" 34 | - 35 | table2_id: 3 36 | column5: ajsdlkfguitah 37 | column6: 654 38 | column7: blah 39 | column8: |- 40 | thesethasdl 41 | asdflkjsadf asdfsadfhl "adsf, halsdf" sadfhlasdf 42 | 43 | emptyTable: 44 | 45 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/Vagrantfile: -------------------------------------------------------------------------------- 1 | VAGRANTFILE_API_VERSION = "2" 2 | 3 | Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| 4 | config.vm.box = "hashicorp/precise64" 5 | 6 | if Vagrant.has_plugin?("vagrant-cachier") 7 | end 8 | 9 | config.vm.provision "shell", inline: "source /vagrant/build/vagrant.sh" 10 | end 11 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/build/PHPCS/Sniffs/ControlStructures/ControlSignatureSniff.php: -------------------------------------------------------------------------------- 1 | getTokens(); 12 | 13 | if ($tokens[($stackPtr - 1)]['code'] !== T_WHITESPACE || 14 | $tokens[($stackPtr + 1)]['code'] !== T_WHITESPACE) { 15 | 16 | $phpcsFile->addError( 17 | 'Concatenation operator must be surrounded by whitespace', 18 | $stackPtr 19 | ); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/build/travis-ci.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | COMPOSER="/usr/local/bin/composer" 4 | COMPOSER_PATH=$(dirname ${COMPOSER}) 5 | MYSQL_USER="root" 6 | MYSQL_DATABASE="phpunit_tests" 7 | 8 | if [ ! -x "${COMPOSER}" ]; then 9 | echo "Installing Composer" 10 | curl -sS https://getcomposer.org/installer | sudo php -d apc.enable_cli=0 -- --install-dir=${COMPOSER_PATH} --filename=$(basename ${COMPOSER}) 11 | else 12 | echo "Updating Composer" 13 | sudo ${COMPOSER} self-update 14 | fi 15 | 16 | ${COMPOSER} install --no-interaction --prefer-source --dev 17 | 18 | mysql -u ${MYSQL_USER} -e "CREATE DATABASE IF NOT EXISTS $MYSQL_DATABASE;" 19 | 20 | sed -i 's///g' build/travis-ci.xml 22 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/dbunit.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | REM This file is part of DBUnit. 3 | REM 4 | REM (c) Sebastian Bergmann 5 | REM 6 | REM For the full copyright and license information, please view the LICENSE 7 | REM file that was distributed with this source code. 8 | REM 9 | 10 | if "%PHPBIN%" == "" set PHPBIN=@php_bin@ 11 | if not exist "%PHPBIN%" if "%PHP_PEAR_PHP_BIN%" neq "" goto USE_PEAR_PATH 12 | GOTO RUN 13 | :USE_PEAR_PATH 14 | set PHPBIN=%PHP_PEAR_PHP_BIN% 15 | :RUN 16 | "%PHPBIN%" "@bin_dir@\dbunit" %* 17 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/dbunit/dbunit.php: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | if (strpos('@php_bin@', '@php_bin') === 0) { 13 | set_include_path(dirname(__FILE__) . PATH_SEPARATOR . get_include_path()); 14 | } 15 | 16 | require_once 'PHPUnit/Autoload.php'; 17 | 18 | $command = new PHPUnit_Extensions_Database_UI_Command( 19 | new PHPUnit_Extensions_Database_UI_ModeFactory() 20 | ); 21 | 22 | $command->main( 23 | new PHPUnit_Extensions_Database_UI_Mediums_Text($_SERVER['argv']), 24 | new PHPUnit_Extensions_Database_UI_Context() 25 | ); 26 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/.gitignore: -------------------------------------------------------------------------------- 1 | build/api 2 | build/code-browser 3 | build/coverage 4 | build/logs 5 | build/pdepend 6 | cache.properties 7 | phpunit.xml 8 | /vendor 9 | /composer.lock 10 | /composer.phar 11 | /.idea 12 | 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3.3 5 | - 5.3 6 | - 5.4 7 | - 5.5 8 | - 5.6 9 | 10 | before_script: 11 | - COMPOSER_ROOT_VERSION=dev-master composer install --dev --prefer-source 12 | 13 | script: vendor/bin/phpunit --configuration ./build/travis-ci.xml 14 | 15 | notifications: 16 | email: false 17 | irc: 18 | channels: 19 | - "irc.freenode.org#phpunit" 20 | use_notice: true 21 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Pull Requests for bug fixes should be made against the current release branch (1.2). 2 | 3 | Pull Requests for new features should be made against master. 4 | 5 | For further notes please refer to [https://github.com/sebastianbergmann/phpunit/blob/master/CONTRIBUTING.md](https://github.com/sebastianbergmann/phpunit/blob/master/CONTRIBUTING.md) 6 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/coverage_bar.html.dist: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/directory_item.html.dist: -------------------------------------------------------------------------------- 1 | 2 | {{icon}}{{name}} 3 | {{lines_bar}} 4 |
{{lines_executed_percent}}
5 |
{{lines_number}}
6 | {{methods_bar}} 7 |
{{methods_tested_percent}}
8 |
{{methods_number}}
9 | {{classes_bar}} 10 |
{{classes_tested_percent}}
11 |
{{classes_number}}
12 | 13 | 14 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/file_item.html.dist: -------------------------------------------------------------------------------- 1 | 2 | {{name}} 3 | {{classes_bar}} 4 |
{{classes_tested_percent}}
5 |
{{classes_number}}
6 | {{methods_bar}} 7 |
{{methods_tested_percent}}
8 |
{{methods_number}}
9 | {{crap}} 10 | {{lines_bar}} 11 |
{{lines_executed_percent}}
12 |
{{lines_number}}
13 | 14 | 15 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalers/maestro/92a08c78560fc0e5022fbd20f2c8a3861ac53967/protected/vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/method_item.html.dist: -------------------------------------------------------------------------------- 1 | 2 | {{name}} 3 | {{methods_bar}} 4 |
{{methods_tested_percent}}
5 |
{{methods_number}}
6 | {{crap}} 7 | {{lines_bar}} 8 |
{{lines_executed_percent}}
9 |
{{lines_number}}
10 | 11 | 12 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/BankAccount.php: -------------------------------------------------------------------------------- 1 | balance; 9 | } 10 | 11 | protected function setBalance($balance) 12 | { 13 | if ($balance >= 0) { 14 | $this->balance = $balance; 15 | } else { 16 | throw new RuntimeException; 17 | } 18 | } 19 | 20 | public function depositMoney($balance) 21 | { 22 | $this->setBalance($this->getBalance() + $balance); 23 | 24 | return $this->getBalance(); 25 | } 26 | 27 | public function withdrawMoney($balance) 28 | { 29 | $this->setBalance($this->getBalance() - $balance); 30 | 31 | return $this->getBalance(); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/CoverageClassExtendedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/CoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/CoverageFunctionParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/CoverageMethodParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/CoverageMethodParenthesesWhitespaceTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/CoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/CoverageNoneTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/CoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/CoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/CoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/CoverageNothingTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/CoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/CoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/CoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/CoverageTwoDefaultClassAnnotations.php: -------------------------------------------------------------------------------- 1 | 12 | */ 13 | public function testSomething() 14 | { 15 | $o = new Foo\CoveredClass; 16 | $o->publicMethod(); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/CoveredClass.php: -------------------------------------------------------------------------------- 1 | privateMethod(); 11 | } 12 | 13 | public function publicMethod() 14 | { 15 | $this->protectedMethod(); 16 | } 17 | } 18 | 19 | class CoveredClass extends CoveredParentClass 20 | { 21 | private function privateMethod() 22 | { 23 | } 24 | 25 | protected function protectedMethod() 26 | { 27 | parent::protectedMethod(); 28 | $this->privateMethod(); 29 | } 30 | 31 | public function publicMethod() 32 | { 33 | parent::publicMethod(); 34 | $this->protectedMethod(); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoverageCoversClassPublicTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoverageCoversClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 19 | } 20 | } 21 | 22 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoveredClass.php: -------------------------------------------------------------------------------- 1 | privateMethod(); 13 | } 14 | 15 | public function publicMethod() 16 | { 17 | $this->protectedMethod(); 18 | } 19 | } 20 | 21 | class CoveredClass extends CoveredParentClass 22 | { 23 | private function privateMethod() 24 | { 25 | } 26 | 27 | protected function protectedMethod() 28 | { 29 | parent::protectedMethod(); 30 | $this->privateMethod(); 31 | } 32 | 33 | public function publicMethod() 34 | { 35 | parent::publicMethod(); 36 | $this->protectedMethod(); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/NotExistingCoveredElementTest.php: -------------------------------------------------------------------------------- 1 | 20 | */ 21 | public function testThree() 22 | { 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/Tests/_files/source_with_class_and_anonymous_function.php: -------------------------------------------------------------------------------- 1 | getTokens(); 12 | 13 | if ($tokens[($stackPtr - 1)]['code'] !== T_WHITESPACE || 14 | $tokens[($stackPtr + 1)]['code'] !== T_WHITESPACE) { 15 | 16 | $phpcsFile->addError( 17 | 'Concatenation operator must be surrounded by whitespace', 18 | $stackPtr 19 | ); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/build/travis-ci.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | ../Tests/PHP 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | ../PHP 19 | 20 | ../PHP/CodeCoverage/Autoload.php 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/scripts/auto_append.php: -------------------------------------------------------------------------------- 1 | stop(); 3 | 4 | $writer = new PHP_CodeCoverage_Report_HTML; 5 | $writer->process($coverage, '/tmp/coverage'); 6 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-code-coverage/scripts/auto_prepend.php: -------------------------------------------------------------------------------- 1 | filter(); 6 | 7 | $filter->addFileToBlacklist(__FILE__); 8 | $filter->addFileToBlacklist(dirname(__FILE__) . '/auto_append.php'); 9 | 10 | $coverage->start($_SERVER['SCRIPT_FILENAME']); 11 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-file-iterator/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-file-iterator/.gitignore: -------------------------------------------------------------------------------- 1 | build/api 2 | build/code-browser 3 | build/coverage 4 | build/logs 5 | build/pdepend 6 | cache.properties 7 | phpunit.xml 8 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-file-iterator/ChangeLog.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). 4 | 5 | ## [1.4.0] - 2015-04-02 6 | 7 | ### Added 8 | 9 | * [Added support for wildcards (glob) in exclude](https://github.com/sebastianbergmann/php-file-iterator/pull/23) 10 | 11 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-file-iterator/README.md: -------------------------------------------------------------------------------- 1 | # File_Iterator 2 | 3 | ## Installation 4 | 5 | To add File_Iterator as a local, per-project dependency to your project, simply add a dependency on `phpunit/php-file-iterator` to your project's `composer.json` file. Here is a minimal example of a `composer.json` file that just defines a dependency on File_Iterator 1.4: 6 | 7 | { 8 | "require": { 9 | "phpunit/php-file-iterator": "~1.4" 10 | } 11 | } 12 | 13 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-text-template/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-text-template/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /composer.phar 3 | /.idea 4 | /vendor 5 | 6 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-text-template/README.md: -------------------------------------------------------------------------------- 1 | # Text_Template 2 | 3 | ## Installation 4 | 5 | ## Installation 6 | 7 | To add this package as a local, per-project dependency to your project, simply add a dependency on `phpunit/php-text-template` to your project's `composer.json` file. Here is a minimal example of a `composer.json` file that just defines a dependency on Text_Template: 8 | 9 | { 10 | "require": { 11 | "phpunit/php-text-template": "~1.2" 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-text-template/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phpunit/php-text-template", 3 | "description": "Simple template engine.", 4 | "type": "library", 5 | "keywords": [ 6 | "template" 7 | ], 8 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", 9 | "license": "BSD-3-Clause", 10 | "authors": [ 11 | { 12 | "name": "Sebastian Bergmann", 13 | "email": "sebastian@phpunit.de", 14 | "role": "lead" 15 | } 16 | ], 17 | "support": { 18 | "issues": "https://github.com/sebastianbergmann/php-text-template/issues" 19 | }, 20 | "require": { 21 | "php": ">=5.3.3" 22 | }, 23 | "autoload": { 24 | "classmap": [ 25 | "src/" 26 | ] 27 | } 28 | } 29 | 30 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-timer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-timer/.gitignore: -------------------------------------------------------------------------------- 1 | build/api 2 | build/code-browser 3 | build/coverage 4 | build/logs 5 | build/pdepend 6 | cache.properties 7 | phpunit.xml 8 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-timer/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3.3 5 | - 5.3 6 | - 5.4 7 | - 5.5 8 | - 5.6 9 | - hhvm 10 | 11 | script: 12 | - phpunit --bootstrap src/Timer.php tests 13 | 14 | notifications: 15 | email: false 16 | webhooks: 17 | urls: 18 | - https://webhooks.gitter.im/e/6668f52f3dd4e3f81960 19 | on_success: always 20 | on_failure: always 21 | on_start: false 22 | 23 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-timer/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phpunit/php-timer", 3 | "description": "Utility class for timing", 4 | "type": "library", 5 | "keywords": [ 6 | "timer" 7 | ], 8 | "homepage": "https://github.com/sebastianbergmann/php-timer/", 9 | "license": "BSD-3-Clause", 10 | "authors": [ 11 | { 12 | "name": "Sebastian Bergmann", 13 | "email": "sb@sebastian-bergmann.de", 14 | "role": "lead" 15 | } 16 | ], 17 | "support": { 18 | "issues": "https://github.com/sebastianbergmann/php-timer/issues", 19 | "irc": "irc://irc.freenode.net/phpunit" 20 | }, 21 | "require": { 22 | "php": ">=5.3.3" 23 | }, 24 | "autoload": { 25 | "classmap": [ 26 | "src/" 27 | ] 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-token-stream/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-token-stream/.gitignore: -------------------------------------------------------------------------------- 1 | build/api 2 | build/code-browser 3 | build/coverage 4 | build/logs 5 | build/pdepend 6 | cache.properties 7 | phpunit.xml 8 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-token-stream/README.md: -------------------------------------------------------------------------------- 1 | # PHP_TokenStream 2 | 3 | ## Installation 4 | 5 | You can use [Composer](http://getcomposer.org/) or the [PEAR Installer](http://pear.php.net/manual/en/guide.users.commandline.cli.php) to download and install this package as well as its dependencies. 6 | 7 | ### Composer 8 | 9 | To add this package as a local, per-project dependency to your project, simply add a dependency on `phpunit/php-token-stream` to your project's `composer.json` file. Here is a minimal example of a `composer.json` file that just defines a dependency on PHP_TokenStream: 10 | 11 | { 12 | "require": { 13 | "phpunit/php-token-stream": "*" 14 | } 15 | } 16 | 17 | ### PEAR Installer 18 | 19 | The following two commands (which you may have to run as `root`) are all that is required to install this package using the PEAR Installer: 20 | 21 | pear config-set auto_discover 1 22 | pear install pear.phpunit.de/PHP_TokenStream 23 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-token-stream/Tests/_files/classExtendsNamespacedClass.php: -------------------------------------------------------------------------------- 1 | getTokens(); 12 | 13 | if ($tokens[($stackPtr - 1)]['code'] !== T_WHITESPACE || 14 | $tokens[($stackPtr + 1)]['code'] !== T_WHITESPACE) { 15 | 16 | $phpcsFile->addError( 17 | 'Concatenation operator must be surrounded by whitespace', 18 | $stackPtr 19 | ); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/php-token-stream/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | Tests 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | PHP 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/phpunit-mock-objects/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/phpunit-mock-objects/.gitignore: -------------------------------------------------------------------------------- 1 | build/api 2 | build/code-browser 3 | build/coverage 4 | build/logs 5 | build/pdepend 6 | cache.properties 7 | phpunit.xml 8 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/phpunit-mock-objects/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Pull Requests for bug fixes should be made against the current release branch (1.2). 2 | 3 | Pull Requests for new features should be made against master. 4 | 5 | For further notes please refer to [https://github.com/sebastianbergmann/phpunit/blob/master/CONTRIBUTING.md](https://github.com/sebastianbergmann/phpunit/blob/master/CONTRIBUTING.md) 6 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/phpunit-mock-objects/ChangeLog.markdown: -------------------------------------------------------------------------------- 1 | PHPUnit_MockObject 1.2 2 | ====================== 3 | 4 | This is the list of changes for the PHPUnit_MockObject 1.2 release series. 5 | 6 | PHPUnit_MockObject 1.2.3 7 | ------------------------ 8 | 9 | * Fixed a bug where getting two mocks with different argument cloning options returned the same mock. 10 | 11 | PHPUnit_MockObject 1.2.2 12 | ------------------------ 13 | 14 | * Fixed #100: Removed the unique mock object ID introduced in version 1.2. 15 | 16 | PHPUnit_MockObject 1.2.1 17 | ------------------------ 18 | 19 | * No changes. 20 | 21 | PHPUnit_MockObject 1.2.0 22 | ------------------------ 23 | 24 | * Implemented #47: Make cloning of arguments passed to mocked methods optional. 25 | * Implemented #84: `getMockFromWsdl()` now works with namespaces. 26 | * Fixed #90: Mocks with a fixed class name could only be created once. 27 | 28 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Generator/mocked_clone.tpl.dist: -------------------------------------------------------------------------------- 1 | public function __clone() 2 | { 3 | $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | } 5 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Generator/mocked_object_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | {modifier} function {reference}{method_name}({arguments_decl}) 3 | { 4 | $arguments = array({arguments_call}); 5 | $count = func_num_args(); 6 | 7 | if ($count > {arguments_count}) { 8 | $_arguments = func_get_args(); 9 | 10 | for ($i = {arguments_count}; $i < $count; $i++) { 11 | $arguments[] = $_arguments[$i]; 12 | } 13 | } 14 | 15 | $result = $this->__phpunit_getInvocationMocker()->invoke( 16 | new PHPUnit_Framework_MockObject_Invocation_Object( 17 | '{class_name}', '{method_name}', $arguments, $this, {clone_arguments} 18 | ) 19 | ); 20 | 21 | return $result; 22 | } 23 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Generator/mocked_static_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | {modifier} static function {reference}{method_name}({arguments_decl}) 3 | { 4 | $arguments = array({arguments_call}); 5 | $count = func_num_args(); 6 | 7 | if ($count > {arguments_count}) { 8 | $_arguments = func_get_args(); 9 | 10 | for ($i = {arguments_count}; $i < $count; $i++) { 11 | $arguments[] = $_arguments[$i]; 12 | } 13 | } 14 | 15 | $result = self::__phpunit_getStaticInvocationMocker()->invoke( 16 | new PHPUnit_Framework_MockObject_Invocation_Static( 17 | '{class_name}', '{method_name}', $arguments, {clone_arguments} 18 | ) 19 | ); 20 | 21 | return $result; 22 | } 23 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Generator/trait_class.tpl.dist: -------------------------------------------------------------------------------- 1 | class {class_name} 2 | { 3 | use {trait_name}; 4 | } 5 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Generator/unmocked_clone.tpl.dist: -------------------------------------------------------------------------------- 1 | public function __clone() 2 | { 3 | $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | parent::__clone(); 5 | } 6 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Generator/wsdl_class.tpl.dist: -------------------------------------------------------------------------------- 1 | {namespace} 2 | 3 | class {class_name} extends \SOAPClient 4 | { 5 | public function __construct($wsdl, array $options) 6 | { 7 | parent::__construct('{wsdl}', $options); 8 | } 9 | {methods}} 10 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Generator/wsdl_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | public function {method_name}({arguments}) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/phpunit-mock-objects/Tests/MockObject/wsdl_class_partial.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPUnit_Framework_MockObject_Generator::generateClassFromWsdl('GoogleSearch.wsdl', 'GoogleSearch', array('doGoogleSearch')) 3 | --SKIPIF-- 4 | 7 | --FILE-- 8 | 18 | --EXPECTF-- 19 | class GoogleSearch extends \SOAPClient 20 | { 21 | public function __construct($wsdl, array $options) 22 | { 23 | parent::__construct('%s/GoogleSearch.wsdl', $options); 24 | } 25 | 26 | public function doGoogleSearch($key, $q, $start, $maxResults, $filter, $restrict, $safeSearch, $lr, $ie, $oe) 27 | { 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/phpunit-mock-objects/Tests/_files/AbstractMockTestClass.php: -------------------------------------------------------------------------------- 1 | constructorArgs = array($arg1, $arg2); 10 | } 11 | 12 | public function mockableMethod() 13 | { 14 | // something different from NULL 15 | return TRUE; 16 | } 17 | 18 | public function anotherMockableMethod() 19 | { 20 | // something different from NULL 21 | return TRUE; 22 | } 23 | 24 | public function __clone() 25 | { 26 | $this->cloned = TRUE; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/phpunit-mock-objects/Tests/_files/PartialMockTestClass.php: -------------------------------------------------------------------------------- 1 | constructorCalled = TRUE; 9 | } 10 | 11 | public function doSomething() 12 | { 13 | } 14 | 15 | public function doAnotherThing() 16 | { 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/phpunit-mock-objects/Tests/_files/SomeClass.php: -------------------------------------------------------------------------------- 1 | getTokens(); 12 | 13 | if ($tokens[($stackPtr - 1)]['code'] !== T_WHITESPACE || 14 | $tokens[($stackPtr + 1)]['code'] !== T_WHITESPACE) { 15 | 16 | $phpcsFile->addError( 17 | 'Concatenation operator must be surrounded by whitespace', 18 | $stackPtr 19 | ); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /protected/vendor/phpunit/phpunit-mock-objects/build/travis-ci.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | ../Tests 12 | ../Tests 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | ../PHPUnit 23 | 24 | ../PHPUnit/Framework/MockObject/Autoload.php 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/comparator/.gitignore: -------------------------------------------------------------------------------- 1 | /build/coverage 2 | /composer.lock 3 | /composer.phar 4 | /phpunit.xml 5 | /.idea 6 | /vendor 7 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/comparator/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | sudo: false 4 | 5 | install: 6 | - travis_retry composer install --no-interaction --prefer-source 7 | 8 | script: ./vendor/bin/phpunit --configuration ./build/travis-ci.xml 9 | 10 | php: 11 | - 5.3.3 12 | - 5.3 13 | - 5.4 14 | - 5.5 15 | - 5.6 16 | - hhvm 17 | 18 | notifications: 19 | email: false 20 | webhooks: 21 | urls: 22 | - https://webhooks.gitter.im/e/6668f52f3dd4e3f81960 23 | on_success: always 24 | on_failure: always 25 | on_start: false 26 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/comparator/build/travis-ci.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | ../tests 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/comparator/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | tests 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | src 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/comparator/tests/_files/Author.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | /** 14 | * An author. 15 | * 16 | */ 17 | class Author 18 | { 19 | // the order of properties is important for testing the cycle! 20 | public $books = array(); 21 | 22 | private $name = ''; 23 | 24 | public function __construct($name) 25 | { 26 | $this->name = $name; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/comparator/tests/_files/Book.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | /** 14 | * A book. 15 | * 16 | */ 17 | class Book 18 | { 19 | // the order of properties is important for testing the cycle! 20 | public $author = null; 21 | } 22 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/comparator/tests/_files/ClassWithToString.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | class ClassWithToString 14 | { 15 | public function __toString() 16 | { 17 | return 'string representation'; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/comparator/tests/_files/SampleClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | /** 14 | * A sample class. 15 | * 16 | */ 17 | class SampleClass 18 | { 19 | public $a; 20 | protected $b; 21 | protected $c; 22 | 23 | public function __construct($a, $b, $c) 24 | { 25 | $this->a = $a; 26 | $this->b = $b; 27 | $this->c = $c; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/comparator/tests/_files/Struct.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | /** 14 | * A struct. 15 | * 16 | */ 17 | class Struct 18 | { 19 | public $var; 20 | 21 | public function __construct($var) 22 | { 23 | $this->var = $var; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/comparator/tests/_files/TestClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | class TestClass { 14 | } 15 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/comparator/tests/_files/TestClassComparator.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | class TestClassComparator extends ObjectComparator { 14 | } 15 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/comparator/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/diff/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sebastian/diff", 3 | "description": "Diff implementation", 4 | "keywords": ["diff"], 5 | "homepage": "http://www.github.com/sebastianbergmann/diff", 6 | "license": "BSD-3-Clause", 7 | "authors": [ 8 | { 9 | "name": "Sebastian Bergmann", 10 | "email": "sebastian@phpunit.de" 11 | }, 12 | { 13 | "name": "Kore Nordmann", 14 | "email": "mail@kore-nordmann.de" 15 | } 16 | ], 17 | "require": { 18 | "php": ">=5.3.3" 19 | }, 20 | "require-dev": { 21 | "phpunit/phpunit": "~4.2" 22 | }, 23 | "autoload": { 24 | "classmap": [ 25 | "src/" 26 | ] 27 | }, 28 | "extra": { 29 | "branch-alias": { 30 | "dev-master": "1.3-dev" 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/diff/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | tests 9 | 10 | 11 | 12 | 13 | src 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/diff/tests/fixtures/patch.txt: -------------------------------------------------------------------------------- 1 | diff --git a/Foo.php b/Foo.php 2 | index abcdefg..abcdefh 100644 3 | --- a/Foo.php 4 | +++ b/Foo.php 5 | @@ -20,4 +20,5 @@ class Foo 6 | const ONE = 1; 7 | const TWO = 2; 8 | + const THREE = 3; 9 | const FOUR = 4; 10 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/diff/tests/fixtures/patch2.txt: -------------------------------------------------------------------------------- 1 | diff --git a/Foo.php b/Foo.php 2 | index abcdefg..abcdefh 100644 3 | --- a/Foo.php 4 | +++ b/Foo.php 5 | @@ -20,4 +20,5 @@ class Foo 6 | const ONE = 1; 7 | const TWO = 2; 8 | + const THREE = 3; 9 | const FOUR = 4; 10 | 11 | @@ -320,4 +320,5 @@ class Foo 12 | const A = 'A'; 13 | const B = 'B'; 14 | + const C = 'C'; 15 | const D = 'D'; 16 | 17 | @@ -600,4 +600,5 @@ class Foo 18 | public function doSomething() { 19 | 20 | + return 'foo'; 21 | } 22 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/exporter/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | phpunit.xml 3 | composer.lock 4 | composer.phar 5 | vendor/ 6 | cache.properties 7 | build/LICENSE 8 | build/README.md 9 | build/*.tgz 10 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/exporter/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | before_script: 4 | - composer self-update 5 | - composer install --no-interaction --prefer-source --dev 6 | 7 | php: 8 | - 5.3.3 9 | - 5.3 10 | - 5.4 11 | - 5.5 12 | - 5.6 13 | - hhvm 14 | 15 | notifications: 16 | email: false 17 | webhooks: 18 | urls: 19 | - https://webhooks.gitter.im/e/6668f52f3dd4e3f81960 20 | on_success: always 21 | on_failure: always 22 | on_start: false 23 | 24 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/exporter/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/exporter/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | tests 13 | 14 | 15 | 16 | 17 | src 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/recursion-context/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | phpunit.xml 3 | composer.lock 4 | composer.phar 5 | vendor/ 6 | cache.properties 7 | build/LICENSE 8 | build/README.md 9 | build/*.tgz 10 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/recursion-context/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3.3 5 | - 5.3 6 | - 5.4 7 | - 5.5 8 | - 5.6 9 | - hhvm 10 | 11 | sudo: false 12 | 13 | before_script: 14 | - composer self-update 15 | - composer install --no-interaction --prefer-source --dev 16 | 17 | script: ./vendor/bin/phpunit 18 | 19 | notifications: 20 | email: false 21 | irc: "irc.freenode.org#phpunit" 22 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/recursion-context/README.md: -------------------------------------------------------------------------------- 1 | # Recursion Context 2 | 3 | ... 4 | 5 | ## Installation 6 | 7 | To add Recursion Context as a local, per-project dependency to your project, simply add a dependency on `sebastian/recursion-context` to your project's `composer.json` file. Here is a minimal example of a `composer.json` file that just defines a dependency on Recursion Context 1.0: 8 | 9 | { 10 | "require": { 11 | "sebastian/recursion-context": "~1.0" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/recursion-context/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/recursion-context/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | tests 13 | 14 | 15 | 16 | 17 | src 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/recursion-context/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\RecursionContext; 12 | 13 | /** 14 | */ 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /protected/vendor/sebastian/recursion-context/src/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\RecursionContext; 12 | 13 | /** 14 | */ 15 | final class InvalidArgumentException extends \InvalidArgumentException implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /protected/vendor/symfony/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /protected/vendor/symfony/yaml/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 2.1.0 5 | ----- 6 | 7 | * Yaml::parse() does not evaluate loaded files as PHP files by default 8 | anymore (call Yaml::enablePhpParsing() to get back the old behavior) 9 | -------------------------------------------------------------------------------- /protected/vendor/symfony/yaml/Exception/DumpException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Yaml\Exception; 13 | 14 | /** 15 | * Exception class thrown when an error occurs during dumping. 16 | * 17 | * @author Fabien Potencier 18 | * 19 | * @api 20 | */ 21 | class DumpException extends RuntimeException 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /protected/vendor/symfony/yaml/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Yaml\Exception; 13 | 14 | /** 15 | * Exception interface for all exceptions thrown by the component. 16 | * 17 | * @author Fabien Potencier 18 | * 19 | * @api 20 | */ 21 | interface ExceptionInterface 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /protected/vendor/symfony/yaml/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Yaml\Exception; 13 | 14 | /** 15 | * Exception class thrown when an error occurs during parsing. 16 | * 17 | * @author Romain Neutron 18 | * 19 | * @api 20 | */ 21 | class RuntimeException extends \RuntimeException implements ExceptionInterface 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /protected/vendor/symfony/yaml/README.md: -------------------------------------------------------------------------------- 1 | Yaml Component 2 | ============== 3 | 4 | YAML implements most of the YAML 1.2 specification. 5 | 6 | ```php 7 | use Symfony\Component\Yaml\Yaml; 8 | 9 | $array = Yaml::parse(file_get_contents(filename)); 10 | 11 | print Yaml::dump($array); 12 | ``` 13 | 14 | Resources 15 | --------- 16 | 17 | You can run the unit tests with the following command: 18 | 19 | $ cd path/to/Symfony/Component/Yaml/ 20 | $ composer install 21 | $ phpunit 22 | -------------------------------------------------------------------------------- /protected/vendor/symfony/yaml/Tests/Fixtures/YtsErrorTests.yml: -------------------------------------------------------------------------------- 1 | --- 2 | test: Missing value for hash item 3 | todo: true 4 | brief: | 5 | Third item in this hash doesn't have a value 6 | yaml: | 7 | okay: value 8 | also okay: ~ 9 | causes error because no value specified 10 | last key: value okay here too 11 | python-error: causes error because no value specified 12 | 13 | --- 14 | test: Not indenting enough 15 | brief: | 16 | There was a bug in PyYaml where it was off by one 17 | in the indentation check. It was allowing the YAML 18 | below. 19 | # This is actually valid YAML now. Someone should tell showell. 20 | yaml: | 21 | foo: 22 | firstline: 1 23 | secondline: 2 24 | php: | 25 | array('foo' => null, 'firstline' => 1, 'secondline' => 2) 26 | -------------------------------------------------------------------------------- /protected/vendor/symfony/yaml/Tests/Fixtures/YtsNullsAndEmpties.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: Empty Sequence 3 | brief: > 4 | You can represent the empty sequence 5 | with an empty inline sequence. 6 | yaml: | 7 | empty: [] 8 | php: | 9 | array('empty' => array()) 10 | --- 11 | test: Empty Mapping 12 | brief: > 13 | You can represent the empty mapping 14 | with an empty inline mapping. 15 | yaml: | 16 | empty: {} 17 | php: | 18 | array('empty' => array()) 19 | --- 20 | test: Empty Sequence as Entire Document 21 | yaml: | 22 | [] 23 | php: | 24 | array() 25 | --- 26 | test: Empty Mapping as Entire Document 27 | yaml: | 28 | {} 29 | php: | 30 | array() 31 | --- 32 | test: Null as Document 33 | yaml: | 34 | ~ 35 | php: | 36 | null 37 | --- 38 | test: Empty String 39 | brief: > 40 | You can represent an empty string 41 | with a pair of quotes. 42 | yaml: | 43 | '' 44 | php: | 45 | '' 46 | -------------------------------------------------------------------------------- /protected/vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /protected/vendor/symfony/yaml/Tests/Fixtures/index.yml: -------------------------------------------------------------------------------- 1 | - escapedCharacters 2 | - sfComments 3 | - sfCompact 4 | - sfTests 5 | - sfObjects 6 | - sfMergeKey 7 | - sfQuotes 8 | - YtsAnchorAlias 9 | - YtsBasicTests 10 | - YtsBlockMapping 11 | - YtsDocumentSeparator 12 | - YtsErrorTests 13 | - YtsFlowCollections 14 | - YtsFoldedScalars 15 | - YtsNullsAndEmpties 16 | - YtsSpecificationExamples 17 | - YtsTypeTransfers 18 | - unindentedCollections 19 | -------------------------------------------------------------------------------- /protected/vendor/symfony/yaml/Tests/Fixtures/sfObjects.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: Objects 3 | brief: > 4 | Comments at the end of a line 5 | yaml: | 6 | ex1: "foo # bar" 7 | ex2: "foo # bar" # comment 8 | ex3: 'foo # bar' # comment 9 | ex4: foo # comment 10 | php: | 11 | array('ex1' => 'foo # bar', 'ex2' => 'foo # bar', 'ex3' => 'foo # bar', 'ex4' => 'foo') 12 | -------------------------------------------------------------------------------- /protected/vendor/symfony/yaml/Tests/Fixtures/sfQuotes.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: Some characters at the beginning of a string must be escaped 3 | brief: > 4 | Some characters at the beginning of a string must be escaped 5 | yaml: | 6 | foo: | bar 7 | php: | 8 | array('foo' => '| bar') 9 | --- 10 | test: A key can be a quoted string 11 | brief: > 12 | A key can be a quoted string 13 | yaml: | 14 | "foo1": bar 15 | 'foo2': bar 16 | "foo \" bar": bar 17 | 'foo '' bar': bar 18 | 'foo3: ': bar 19 | "foo4: ": bar 20 | foo5: { "foo \" bar: ": bar, 'foo '' bar: ': bar } 21 | php: | 22 | array( 23 | 'foo1' => 'bar', 24 | 'foo2' => 'bar', 25 | 'foo " bar' => 'bar', 26 | 'foo \' bar' => 'bar', 27 | 'foo3: ' => 'bar', 28 | 'foo4: ' => 'bar', 29 | 'foo5' => array( 30 | 'foo " bar: ' => 'bar', 31 | 'foo \' bar: ' => 'bar', 32 | ), 33 | ) 34 | -------------------------------------------------------------------------------- /protected/vendor/symfony/yaml/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "symfony/yaml", 3 | "type": "library", 4 | "description": "Symfony Yaml Component", 5 | "keywords": [], 6 | "homepage": "https://symfony.com", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Fabien Potencier", 11 | "email": "fabien@symfony.com" 12 | }, 13 | { 14 | "name": "Symfony Community", 15 | "homepage": "https://symfony.com/contributors" 16 | } 17 | ], 18 | "require": { 19 | "php": ">=5.3.9" 20 | }, 21 | "require-dev": { 22 | "symfony/phpunit-bridge": "~2.7" 23 | }, 24 | "autoload": { 25 | "psr-4": { "Symfony\\Component\\Yaml\\": "" } 26 | }, 27 | "minimum-stability": "dev", 28 | "extra": { 29 | "branch-alias": { 30 | "dev-master": "2.7-dev" 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /protected/vendor/symfony/yaml/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | ./Tests/ 16 | 17 | 18 | 19 | 20 | 21 | ./ 22 | 23 | ./vendor 24 | ./Tests 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /protected/views/customer/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Customers'=>array('index'), 7 | 'Create', 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Customers', 'url'=>array('index')), 12 | //array('label'=>'Manage Customer', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Create Customer

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/customer/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Customers'=>array('index'), 7 | $model->id=>array('view','id'=>$model->id), 8 | 'Update', 9 | ); 10 | 11 | $this->menu=array( 12 | array('label'=>'List Customers', 'url'=>array('index')), 13 | array('label'=>'Create Customer', 'url'=>array('create')), 14 | array('label'=>'View Customer', 'url'=>array('view', 'id'=>$model->id)), 15 | //array('label'=>'Manage Customer', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

Update Customer id; ?>

20 | 21 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/file/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Files'=>array('index'), 7 | 'Create', 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Files', 'url'=>array('index')), 12 | //array('label'=>'Manage File', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Create File

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/file/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Files'=>array('index'), 7 | $model->id=>array('view','id'=>$model->id), 8 | 'Update', 9 | ); 10 | 11 | $this->menu=array( 12 | array('label'=>'List Files', 'url'=>array('index')), 13 | array('label'=>'Create File', 'url'=>array('create')), 14 | array('label'=>'View File', 'url'=>array('view', 'id'=>$model->id)), 15 | //array('label'=>'Manage File', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

Update File id; ?>

20 | 21 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/issue/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Issues'=>array('index'), 7 | 'Create', 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Issues', 'url'=>array('index', 'pid'=>$model->project->id)), 12 | //array('label'=>'Manage Issues', 'url'=>array('admin', 'pid'=>$model->project->id)), 13 | ); 14 | ?> 15 | 16 |

Create Issue

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/issue/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Issues'=>array('index'), 7 | $model->name=>array('view','id'=>$model->id), 8 | 'Update', 9 | ); 10 | 11 | $this->menu=array( 12 | array('label'=>'List Issues', 'url'=>array('index', 'pid'=>$model->project->id)), 13 | array('label'=>'Create Issue', 'url'=>array('create', 'pid'=>$model->project->id)), 14 | array('label'=>'View Issue', 'url'=>array('view', 'id'=>$model->id)), 15 | //array('label'=>'Manage Issues', 'url'=>array('admin', 'pid'=>$model->project->id)), 16 | ); 17 | ?> 18 | 19 |

Update Issue id; ?>

20 | 21 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/layouts/column1.php: -------------------------------------------------------------------------------- 1 | 2 | beginContent('//layouts/main'); ?> 3 |
4 | 5 |
6 | endContent(); ?> -------------------------------------------------------------------------------- /protected/views/layouts/column2.php: -------------------------------------------------------------------------------- 1 | 2 | beginContent('//layouts/main'); ?> 3 | 4 | 11 | 28 | 29 |
5 | 6 |
7 | 8 |
9 | 10 |
12 |
13 | 26 |
27 |
30 | endContent(); ?> -------------------------------------------------------------------------------- /protected/views/maintenance/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <?php echo CHtml::encode(Yii::app()->name)?> is under maintenance 5 | 6 | 7 |

name)?> is under maintenance

8 |

It should be available again soon, but if it seems to be taking too long please email params['adminEmail']?>.

9 |

Otherwise, it's a good time to get a cup of coffee and catch up on email...

10 | -------------------------------------------------------------------------------- /protected/views/order/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Orders'=>array('index'), 7 | 'Create', 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Orders', 'url'=>array('index')), 12 | ); 13 | ?> 14 | 15 |

Create Order

16 | 17 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/orderItem/_view.php: -------------------------------------------------------------------------------- 1 | 5 | 6 |
7 | 8 | getAttributeLabel('id')); ?>: 9 | id), array('view', 'id'=>$data->id)); ?> 10 |
11 | 12 | getAttributeLabel('order_id')); ?>: 13 | order_id); ?> 14 |
15 | 16 | getAttributeLabel('part_id')); ?>: 17 | part_id); ?> 18 |
19 | 20 | getAttributeLabel('desired_qty')); ?>: 21 | desired_qty); ?> 22 |
23 | 24 | getAttributeLabel('shipped_qty')); ?>: 25 | shipped_qty); ?> 26 |
27 | 28 |
-------------------------------------------------------------------------------- /protected/views/orderItem/createItemToOrder.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Order Items'=>array('index'), 7 | 'Create', 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Order Items', 'url'=>array('index')), 12 | array('label'=>'Manage Order Item', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Create Order Item

17 | 18 | renderPartial('_formItemToOrder', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/orderItem/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Order Items', 7 | ); 8 | 9 | $this->menu=array( 10 | array('label'=>'Create Order Item', 'url'=>array('create')), 11 | array('label'=>'Manage Order Item', 'url'=>array('admin')), 12 | ); 13 | ?> 14 | 15 |

Om Order Items

16 | 17 | widget('zii.widgets.CListView', array( 18 | 'dataProvider'=>$dataProvider, 19 | 'itemView'=>'_view', 20 | )); ?> 21 | -------------------------------------------------------------------------------- /protected/views/orderItemSn/_search.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 | 9 | beginWidget('CActiveForm', array( 10 | 'action'=>Yii::app()->createUrl($this->route), 11 | 'method'=>'get', 12 | )); ?> 13 | 14 |
15 | label($model,'id'); ?> 16 | textField($model,'id'); ?> 17 |
18 | 19 |
20 | label($model,'order_item_id'); ?> 21 | textField($model,'order_item_id'); ?> 22 |
23 | 24 |
25 | label($model,'stock_serial_id'); ?> 26 | textField($model,'stock_serial_id'); ?> 27 |
28 | 29 |
30 | 31 |
32 | 33 | endWidget(); ?> 34 | 35 |
-------------------------------------------------------------------------------- /protected/views/orderItemSn/_view.php: -------------------------------------------------------------------------------- 1 | 5 | 6 |
7 | 8 | getAttributeLabel('id')); ?>: 9 | id), array('view', 'id'=>$data->id)); ?> 10 |
11 | 12 | getAttributeLabel('order_item_id')); ?>: 13 | order_item_id); ?> 14 |
15 | 16 | getAttributeLabel('stock_serial_id')); ?>: 17 | stock_serial_id); ?> 18 |
19 | 20 | 21 |
-------------------------------------------------------------------------------- /protected/views/orderItemSn/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Serial Number'=>array('index'), 7 | 'Create', 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Serial Numbers', 'url'=>array('index')), 12 | array('label'=>'Manage Serial Numbers', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Create Serial Number

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/orderItemSn/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Serial Number', 7 | ); 8 | 9 | $this->menu=array( 10 | array('label'=>'Create Serial Number', 'url'=>array('create')), 11 | array('label'=>'Manage Serial Number', 'url'=>array('admin')), 12 | ); 13 | ?> 14 | 15 |

Serial Number

16 | 17 | widget('zii.widgets.CListView', array( 18 | 'dataProvider'=>$dataProvider, 19 | 'itemView'=>'_view', 20 | )); ?> 21 | -------------------------------------------------------------------------------- /protected/views/orderItemSn/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Serial Number'=>array('index'), 7 | $model->id=>array('view','id'=>$model->id), 8 | 'Update', 9 | ); 10 | 11 | $this->menu=array( 12 | array('label'=>'List Serial Numbers', 'url'=>array('index')), 13 | array('label'=>'Create Serial Number', 'url'=>array('create')), 14 | array('label'=>'View Serial Number', 'url'=>array('view', 'id'=>$model->id)), 15 | array('label'=>'Manage Serial Number', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

Update Serial Number id; ?>

20 | 21 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/orderItemSn/view.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Serial Number'=>array('index'), 7 | $model->id, 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Serial Numbers', 'url'=>array('index')), 12 | array('label'=>'Create Serial Number', 'url'=>array('create')), 13 | array('label'=>'Update Serial Number', 'url'=>array('update', 'id'=>$model->id)), 14 | array('label'=>'Delete Serial Number', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure you want to delete this item?')), 15 | array('label'=>'Manage Serial Number', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

View Serial Number #id; ?> for Order Item #orderItem->id; ?>

20 | 21 | widget('zii.widgets.CDetailView', array( 22 | 'data'=>$model, 23 | 'attributes'=>array( 24 | 'id', 25 | 'order_item_id', 26 | 'stock_serial_id', 27 | ), 28 | )); ?> 29 | -------------------------------------------------------------------------------- /protected/views/part/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Parts'=>array('index'), 7 | 'Create', 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Parts', 'url'=>array('index')), 12 | //array('label'=>'Manage Parts', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Create Part

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/part/suggestLocation.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 8 | 'Parts'=>array('index'), 9 | CHtml::encode($model->PNPartNumber), 10 | ); 11 | 12 | $this->menu=array( 13 | array('label'=>'List Parts', 'url'=>array('index')), 14 | array('label'=>'View Part', 'url'=>array('view', 'id'=>$model->id)), 15 | ); 16 | ?> 17 | 18 |

Suggest Location for Part 'PNPartNumber); ?>'

19 | 20 | -------------------------------------------------------------------------------- /protected/views/part/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Parts' => array('index'), 7 | CHtml::encode($model->PNPartNumber) => array('view','id'=>$model->id), 8 | 'Update', 9 | ); 10 | 11 | $this->menu=array( 12 | array('label'=>'List Parts', 'url'=>array('index')), 13 | array('label'=>'Create part', 'url'=>array('create')), 14 | array('label'=>'View Part', 'url'=>array('view', 'id'=>$model->id)), 15 | //array('label'=>'Manage Parts', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

Update Part 'PNPartNumber); ?>'

20 | 21 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/project/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Projects'=>array('index'), 7 | 'Create', 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Projects', 'url'=>array('index')), 12 | //array('label'=>'Manage Project', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Create Project

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/project/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Projects'=>array('index'), 7 | $model->name=>array('view','id'=>$model->id), 8 | 'Update', 9 | ); 10 | 11 | $this->menu=array( 12 | array('label'=>'List Projects', 'url'=>array('index')), 13 | array('label'=>'Create Project', 'url'=>array('create')), 14 | array('label'=>'View Project', 'url'=>array('view', 'id'=>$model->id)), 15 | //array('label'=>'Manage Project', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

Update Project id; ?>

20 | 21 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/site/error.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name . ' - Error'; 6 | $this->breadcrumbs=array( 7 | 'Error', 8 | ); 9 | ?> 10 | 11 |

Error

12 | 13 |
14 | 15 |
-------------------------------------------------------------------------------- /protected/views/site/pages/about.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name . ' - About'; 5 | $this->breadcrumbs=array( 6 | 'About', 7 | ); 8 | ?> 9 |

About

10 | 11 |

This is a "static" page. You may change the content of this page 12 | by updating the file .

13 | -------------------------------------------------------------------------------- /protected/views/site/pages/files.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name . ' - Files'; 5 | $this->breadcrumbs=array( 6 | 'Files', 7 | ); 8 | ?> 9 |

Files

10 | 11 |

This page will provide access to Maestro Files when available.

12 | 13 | -------------------------------------------------------------------------------- /protected/views/site/pages/help.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name . ' - Help'; 5 | $this->breadcrumbs=array( 6 | 'Help', 7 | ); 8 | ?> 9 |

Help

10 | 11 |

This page will provide access to Maestro Help when available.

12 | 13 | -------------------------------------------------------------------------------- /protected/views/site/pages/users.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name . ' - Users'; 5 | $this->breadcrumbs=array( 6 | 'Users', 7 | ); 8 | ?> 9 |

Users

10 | 11 |

This page will provide access to the Maestro Users module 12 | when available.

13 | 14 | -------------------------------------------------------------------------------- /protected/views/stock/_view.php: -------------------------------------------------------------------------------- 1 | 5 | 6 |
7 | 8 | getAttributeLabel('id')); ?>: 9 | id), array('view', 'id'=>$data->id)); ?> 10 |
11 | 12 | getAttributeLabel('serial_number')); ?>: 13 | serial_number); ?> 14 |
15 | 16 | getAttributeLabel('version')); ?>: 17 | version); ?> 18 |
19 | 20 | getAttributeLabel('part_id')); ?>: 21 | part_id); ?> 22 |
23 | 24 | getAttributeLabel('status_id')); ?>: 25 | status_id); ?> 26 |
27 | 28 | 29 |
-------------------------------------------------------------------------------- /protected/views/stock/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Stocks'=>array('index'), 7 | 'Create', 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Stock', 'url'=>array('index')), 12 | array('label'=>'Manage Stock', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Create Stock

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/stock/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Stocks', 7 | ); 8 | 9 | $this->menu=array( 10 | array('label'=>'Create Stock', 'url'=>array('create')), 11 | array('label'=>'Manage Stock', 'url'=>array('admin')), 12 | ); 13 | ?> 14 | 15 |

Stocks

16 | 17 | widget('zii.widgets.CListView', array( 18 | 'dataProvider'=>$dataProvider, 19 | 'itemView'=>'_view', 20 | )); ?> 21 | -------------------------------------------------------------------------------- /protected/views/stock/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Stocks'=>array('index'), 7 | $model->id=>array('view','id'=>$model->id), 8 | 'Update', 9 | ); 10 | 11 | $this->menu=array( 12 | array('label'=>'List Stock', 'url'=>array('index')), 13 | array('label'=>'Create Stock', 'url'=>array('create')), 14 | array('label'=>'View Stock', 'url'=>array('view', 'id'=>$model->id)), 15 | array('label'=>'Manage Stock', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

Update Stock id; ?>

20 | 21 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/stock/view.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Stocks'=>array('index'), 7 | $model->id, 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Stock', 'url'=>array('index')), 12 | array('label'=>'Create Stock', 'url'=>array('create')), 13 | array('label'=>'Update Stock', 'url'=>array('update', 'id'=>$model->id)), 14 | array('label'=>'Delete Stock', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure you want to delete this item?')), 15 | array('label'=>'Manage Stock', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

View Stock #id; ?>

20 | 21 | widget('zii.widgets.CDetailView', array( 22 | 'data'=>$model, 23 | 'attributes'=>array( 24 | 'id', 25 | 'serial_number', 26 | 'version', 27 | 'part_id', 28 | 'status_id', 29 | ), 30 | )); ?> -------------------------------------------------------------------------------- /protected/views/stockLocation/_view.php: -------------------------------------------------------------------------------- 1 | 5 | 6 |
7 | 8 | getAttributeLabel('id')); ?>: 9 | id), array('view', 'id'=>$data->id)); ?> 10 |
11 | 12 | getAttributeLabel('name')); ?>: 13 | name); ?> 14 |
15 | 16 | getAttributeLabel('use_sublocation')); ?>: 17 | use_sublocation); ?> 18 |
19 | 20 | getAttributeLabel('sublocation_min')); ?>: 21 | sublocation_min); ?> 22 |
23 | 24 | getAttributeLabel('sublocation_max')); ?>: 25 | sublocation_max); ?> 26 |
27 | 28 | 29 |
-------------------------------------------------------------------------------- /protected/views/stockLocation/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Stock Locations'=>array('index'), 7 | 'Create', 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List StockLocation', 'url'=>array('index')), 12 | array('label'=>'Manage StockLocation', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Create StockLocation

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/stockLocation/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Stock Locations', 7 | ); 8 | 9 | $this->menu=array( 10 | array('label'=>'Create StockLocation', 'url'=>array('create')), 11 | array('label'=>'Manage StockLocation', 'url'=>array('admin')), 12 | ); 13 | ?> 14 | 15 |

Stock Locations

16 | 17 | widget('zii.widgets.CListView', array( 18 | 'dataProvider'=>$dataProvider, 19 | 'itemView'=>'_view', 20 | )); ?> 21 | -------------------------------------------------------------------------------- /protected/views/stockLocation/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Stock Locations'=>array('index'), 7 | $model->name=>array('view','id'=>$model->id), 8 | 'Update', 9 | ); 10 | 11 | $this->menu=array( 12 | array('label'=>'List StockLocation', 'url'=>array('index')), 13 | array('label'=>'Create StockLocation', 'url'=>array('create')), 14 | array('label'=>'View StockLocation', 'url'=>array('view', 'id'=>$model->id)), 15 | array('label'=>'Manage StockLocation', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

Update StockLocation id; ?>

20 | 21 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/stockLocation/view.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Stock Locations'=>array('index'), 7 | $model->name, 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List StockLocation', 'url'=>array('index')), 12 | array('label'=>'Create StockLocation', 'url'=>array('create')), 13 | array('label'=>'Update StockLocation', 'url'=>array('update', 'id'=>$model->id)), 14 | array('label'=>'Delete StockLocation', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure you want to delete this item?')), 15 | array('label'=>'Manage StockLocation', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

View StockLocation #id; ?>

20 | 21 | widget('zii.widgets.CDetailView', array( 22 | 'data'=>$model, 23 | 'attributes'=>array( 24 | 'id', 25 | 'name', 26 | 'use_sublocation', 27 | 'sublocation_min', 28 | 'sublocation_max', 29 | ), 30 | )); ?> 31 | -------------------------------------------------------------------------------- /protected/views/stockSerial/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Stock Serials'=>array('index'), 7 | 'Create', 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Stock Items', 'url'=>array('index')), 12 | //array('label'=>'Manage StockSerial', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Create StockSerial

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/stockSerial/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Stock Serials'=>array('index'), 7 | $model->id=>array('view','id'=>$model->id), 8 | 'Update', 9 | ); 10 | 11 | $this->menu=array( 12 | array('label'=>'List Stock Items', 'url'=>array('index')), 13 | array('label'=>'Create Stock Item', 'url'=>array('create')), 14 | array('label'=>'View Stock Item', 'url'=>array('view', 'id'=>$model->id)), 15 | //array('label'=>'Manage Stock Item', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

Update Stock Item id; ?>

20 | 21 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/user/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Users'=>array('index'), 7 | 'Create', 8 | ); 9 | 10 | $this->menu=array( 11 | array('label'=>'List Users', 'url'=>array('index')), 12 | //array('label'=>'Manage User', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Create User

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/user/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 6 | 'Users'=>array('index'), 7 | $model->id=>array('view','id'=>$model->id), 8 | 'Update', 9 | ); 10 | 11 | $this->menu=array( 12 | array('label'=>'List Users', 'url'=>array('index')), 13 | array('label'=>'Create User', 'url'=>array('create')), 14 | array('label'=>'View User', 'url'=>array('view', 'id'=>$model->id)), 15 | //array('label'=>'Manage User', 'url'=>array('admin')), 16 | ); 17 | ?> 18 | 19 |

Update User id; ?>

20 | 21 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/yii.php: -------------------------------------------------------------------------------- 1 | user" 4 | // http://www.yiiframework.com/wiki/453/phpstorm-netbeans-autocomplete-problem 5 | 6 | class Yii extends YiiBase 7 | { 8 | /** 9 | * Returns the application singleton or null if the singleton has not been created yet. 10 | * @return CWebApplication the application singleton, null if the singleton has not been created yet. 11 | */ 12 | public static function app() 13 | { 14 | return self::app(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /protected/yiic: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 |