├── .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 |
5 |
6 |
7 |
8 |
9 |
10 | |
11 |
12 |
13 |
27 |
26 | |
28 |
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 |This is a "static" page. You may change the content of this page
12 | by updating the file .
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 |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 |This page will provide access to the Maestro Users module 12 | when available.
13 | 14 | -------------------------------------------------------------------------------- /protected/views/stock/_view.php: -------------------------------------------------------------------------------- 1 | 5 | 6 |