├── .gitignore
├── .htaccess
├── LICENSE
├── README.md
├── app
├── .htaccess
├── Config
│ ├── Schema
│ │ ├── db_acl.php
│ │ ├── db_acl.sql
│ │ ├── i18n.php
│ │ ├── i18n.sql
│ │ ├── sessions.php
│ │ └── sessions.sql
│ ├── acl.ini.php
│ ├── acl.php
│ ├── bootstrap.php
│ ├── core.php
│ ├── database.php
│ ├── email.php
│ ├── routes.php
│ └── timesAppSettings.php
├── Console
│ ├── Command
│ │ ├── AppShell.php
│ │ └── Task
│ │ │ └── empty
│ ├── Templates
│ │ └── empty
│ ├── cake
│ ├── cake.bat
│ └── cake.php
├── Controller
│ ├── AppController.php
│ ├── ClientsController.php
│ ├── Component
│ │ └── empty
│ ├── DashboardController.php
│ ├── HoursController.php
│ ├── InvoicesController.php
│ ├── LinesController.php
│ ├── LoginController.php
│ ├── MobileController.php
│ ├── PaymentsController.php
│ ├── ProductsController.php
│ ├── ProjectsController.php
│ ├── ServicesController.php
│ ├── SettingsController.php
│ ├── TaxesController.php
│ └── UsersController.php
├── Lib
│ └── empty
├── Locale
│ └── eng
│ │ └── LC_MESSAGES
│ │ └── empty
├── Model
│ ├── AppModel.php
│ ├── Behavior
│ │ └── empty
│ ├── Client.php
│ ├── Datasource
│ │ └── empty
│ ├── Hour.php
│ ├── Invoice.php
│ ├── Line.php
│ ├── Payment.php
│ ├── Product.php
│ ├── Project.php
│ ├── Service.php
│ ├── Tax.php
│ └── User.php
├── Plugin
│ └── empty
├── Test
│ ├── Case
│ │ ├── Controller
│ │ │ └── Component
│ │ │ │ └── empty
│ │ ├── Model
│ │ │ └── Behavior
│ │ │ │ └── empty
│ │ └── View
│ │ │ └── Helper
│ │ │ └── empty
│ └── Fixture
│ │ └── empty
├── Vendor
│ ├── tcpdf_min
│ │ ├── CHANGELOG.TXT
│ │ ├── LICENSE.TXT
│ │ ├── README.TXT
│ │ ├── composer.json
│ │ ├── config
│ │ │ └── tcpdf_config.php
│ │ ├── fonts
│ │ │ ├── courier.php
│ │ │ ├── courierb.php
│ │ │ ├── courierbi.php
│ │ │ ├── courieri.php
│ │ │ ├── helvetica.php
│ │ │ ├── helveticab.php
│ │ │ ├── helveticabi.php
│ │ │ ├── helveticai.php
│ │ │ ├── symbol.php
│ │ │ ├── times.php
│ │ │ ├── timesb.php
│ │ │ ├── timesbi.php
│ │ │ ├── timesi.php
│ │ │ └── zapfdingbats.php
│ │ ├── include
│ │ │ ├── barcodes
│ │ │ │ ├── datamatrix.php
│ │ │ │ ├── pdf417.php
│ │ │ │ └── qrcode.php
│ │ │ ├── sRGB.icc
│ │ │ ├── tcpdf_colors.php
│ │ │ ├── tcpdf_filters.php
│ │ │ ├── tcpdf_font_data.php
│ │ │ ├── tcpdf_fonts.php
│ │ │ ├── tcpdf_images.php
│ │ │ └── tcpdf_static.php
│ │ ├── tcpdf.php
│ │ ├── tcpdf_autoconfig.php
│ │ ├── tcpdf_barcodes_1d.php
│ │ ├── tcpdf_barcodes_2d.php
│ │ ├── tcpdf_import.php
│ │ ├── tcpdf_parser.php
│ │ └── tools
│ │ │ ├── .htaccess
│ │ │ └── tcpdf_addfont.php
│ └── xtcpdf.php
├── View
│ ├── Clients
│ │ ├── add.ctp
│ │ ├── edit.ctp
│ │ └── index.ctp
│ ├── Dashboard
│ │ └── index.ctp
│ ├── Elements
│ │ ├── flash_danger.ctp
│ │ ├── flash_info.ctp
│ │ ├── flash_success.ctp
│ │ ├── flash_warning.ctp
│ │ ├── footer.ctp
│ │ ├── navbar.ctp
│ │ ├── paginator.ctp
│ │ ├── side_navbar.ctp
│ │ └── tiles
│ │ │ ├── chart.ctp
│ │ │ ├── download_app.ctp
│ │ │ ├── due.ctp
│ │ │ ├── lines.ctp
│ │ │ ├── payments.ctp
│ │ │ ├── time.ctp
│ │ │ ├── users_status.ctp
│ │ │ └── vcard.ctp
│ ├── Emails
│ │ ├── html
│ │ │ ├── default.ctp
│ │ │ ├── invoice.ctp
│ │ │ └── resetpwd.ctp
│ │ └── text
│ │ │ ├── default.ctp
│ │ │ ├── invoice.ctp
│ │ │ └── resetpwd.ctp
│ ├── Errors
│ │ ├── error400.ctp
│ │ └── error500.ctp
│ ├── Helper
│ │ ├── AppHelper.php
│ │ ├── Fn5Helper.php
│ │ └── GravatarHelper.php
│ ├── Hours
│ │ ├── add.ctp
│ │ ├── edit.ctp
│ │ ├── index.ctp
│ │ ├── timer.ctp
│ │ └── view.ctp
│ ├── Invoices
│ │ ├── add.ctp
│ │ ├── edit.ctp
│ │ ├── get_line.ctp
│ │ ├── get_message.ctp
│ │ ├── get_projects_by_client.ctp
│ │ ├── index.ctp
│ │ └── view.ctp
│ ├── Layouts
│ │ ├── Emails
│ │ │ ├── html
│ │ │ │ └── default.ctp
│ │ │ └── text
│ │ │ │ └── default.ctp
│ │ ├── ajax.ctp
│ │ ├── dashboard.ctp
│ │ ├── default.ctp
│ │ ├── error.ctp
│ │ ├── flash.ctp
│ │ ├── invoice_permalink.ctp
│ │ ├── js
│ │ │ └── default.ctp
│ │ ├── login.ctp
│ │ ├── pdf
│ │ │ └── default.ctp
│ │ ├── rss
│ │ │ └── default.ctp
│ │ └── xml
│ │ │ └── default.ctp
│ ├── Lines
│ │ ├── add.ctp
│ │ ├── edit.ctp
│ │ ├── index.ctp
│ │ └── view.ctp
│ ├── Login
│ │ ├── forgetpwd.ctp
│ │ ├── index.ctp
│ │ ├── reset.ctp
│ │ └── signup.ctp
│ ├── Mobile
│ │ └── index.ctp
│ ├── Payments
│ │ ├── add.ctp
│ │ ├── get_amount_by_invoice.ctp
│ │ └── index.ctp
│ ├── Pdf
│ │ └── invoice.ctp
│ ├── Products
│ │ ├── add.ctp
│ │ ├── edit.ctp
│ │ └── index.ctp
│ ├── Projects
│ │ ├── add.ctp
│ │ ├── edit.ctp
│ │ ├── index.ctp
│ │ └── view.ctp
│ ├── Scaffolds
│ │ └── empty
│ ├── Services
│ │ ├── add.ctp
│ │ ├── edit.ctp
│ │ └── index.ctp
│ ├── Settings
│ │ ├── email.ctp
│ │ ├── index.ctp
│ │ └── invoices.ctp
│ ├── Taxes
│ │ ├── add.ctp
│ │ ├── edit.ctp
│ │ └── index.ctp
│ └── Users
│ │ ├── add.ctp
│ │ ├── edit.ctp
│ │ ├── index.ctp
│ │ └── profile.ctp
├── index.php
├── tmp
│ ├── cache
│ │ ├── models
│ │ │ └── empty
│ │ ├── persistent
│ │ │ └── empty
│ │ └── views
│ │ │ └── empty
│ ├── logs
│ │ └── empty
│ ├── sessions
│ │ └── empty
│ └── tests
│ │ └── empty
└── webroot
│ ├── .htaccess
│ ├── config.php
│ ├── css
│ ├── app.css
│ ├── foundation-icons.css
│ └── zebra.css
│ ├── favicon.ico
│ ├── files
│ ├── android
│ │ ├── TimesApp.apk
│ │ └── empty
│ ├── empty
│ └── pdf
│ │ ├── 1.pdf
│ │ ├── nigger.pdf
│ │ └── nigger1.pdf
│ ├── fonts
│ ├── foundation-icons.eot
│ ├── foundation-icons.svg
│ ├── foundation-icons.ttf
│ ├── foundation-icons.woff
│ └── svgs
│ │ ├── fi-address-book.svg
│ │ ├── fi-alert.svg
│ │ ├── fi-align-center.svg
│ │ ├── fi-align-justify.svg
│ │ ├── fi-align-left.svg
│ │ ├── fi-align-right.svg
│ │ ├── fi-anchor.svg
│ │ ├── fi-annotate.svg
│ │ ├── fi-archive.svg
│ │ ├── fi-arrow-down.svg
│ │ ├── fi-arrow-left.svg
│ │ ├── fi-arrow-right.svg
│ │ ├── fi-arrow-up.svg
│ │ ├── fi-arrows-compress.svg
│ │ ├── fi-arrows-expand.svg
│ │ ├── fi-arrows-in.svg
│ │ ├── fi-arrows-out.svg
│ │ ├── fi-asl.svg
│ │ ├── fi-asterisk.svg
│ │ ├── fi-at-sign.svg
│ │ ├── fi-background-color.svg
│ │ ├── fi-battery-empty.svg
│ │ ├── fi-battery-full.svg
│ │ ├── fi-battery-half.svg
│ │ ├── fi-bitcoin-circle.svg
│ │ ├── fi-bitcoin.svg
│ │ ├── fi-blind.svg
│ │ ├── fi-bluetooth.svg
│ │ ├── fi-bold.svg
│ │ ├── fi-book-bookmark.svg
│ │ ├── fi-book.svg
│ │ ├── fi-bookmark.svg
│ │ ├── fi-braille.svg
│ │ ├── fi-burst-new.svg
│ │ ├── fi-burst-sale.svg
│ │ ├── fi-burst.svg
│ │ ├── fi-calendar.svg
│ │ ├── fi-camera.svg
│ │ ├── fi-check.svg
│ │ ├── fi-checkbox.svg
│ │ ├── fi-clipboard-notes.svg
│ │ ├── fi-clipboard-pencil.svg
│ │ ├── fi-clipboard.svg
│ │ ├── fi-clock.svg
│ │ ├── fi-closed-caption.svg
│ │ ├── fi-cloud.svg
│ │ ├── fi-comment-minus.svg
│ │ ├── fi-comment-quotes.svg
│ │ ├── fi-comment-video.svg
│ │ ├── fi-comment.svg
│ │ ├── fi-comments.svg
│ │ ├── fi-compass.svg
│ │ ├── fi-contrast.svg
│ │ ├── fi-credit-card.svg
│ │ ├── fi-crop.svg
│ │ ├── fi-crown.svg
│ │ ├── fi-css3.svg
│ │ ├── fi-database.svg
│ │ ├── fi-die-five.svg
│ │ ├── fi-die-four.svg
│ │ ├── fi-die-one.svg
│ │ ├── fi-die-six.svg
│ │ ├── fi-die-three.svg
│ │ ├── fi-die-two.svg
│ │ ├── fi-dislike.svg
│ │ ├── fi-dollar-bill.svg
│ │ ├── fi-dollar.svg
│ │ ├── fi-download.svg
│ │ ├── fi-eject.svg
│ │ ├── fi-elevator.svg
│ │ ├── fi-euro.svg
│ │ ├── fi-eye.svg
│ │ ├── fi-fast-forward.svg
│ │ ├── fi-female-symbol.svg
│ │ ├── fi-female.svg
│ │ ├── fi-filter.svg
│ │ ├── fi-first-aid.svg
│ │ ├── fi-flag.svg
│ │ ├── fi-folder-add.svg
│ │ ├── fi-folder-lock.svg
│ │ ├── fi-folder.svg
│ │ ├── fi-foot.svg
│ │ ├── fi-foundation.svg
│ │ ├── fi-graph-bar.svg
│ │ ├── fi-graph-horizontal.svg
│ │ ├── fi-graph-pie.svg
│ │ ├── fi-graph-trend.svg
│ │ ├── fi-guide-dog.svg
│ │ ├── fi-hearing-aid.svg
│ │ ├── fi-heart.svg
│ │ ├── fi-home.svg
│ │ ├── fi-html5.svg
│ │ ├── fi-indent-less.svg
│ │ ├── fi-indent-more.svg
│ │ ├── fi-info.svg
│ │ ├── fi-italic.svg
│ │ ├── fi-key.svg
│ │ ├── fi-laptop.svg
│ │ ├── fi-layout.svg
│ │ ├── fi-lightbulb.svg
│ │ ├── fi-like.svg
│ │ ├── fi-link.svg
│ │ ├── fi-list-bullet.svg
│ │ ├── fi-list-number.svg
│ │ ├── fi-list-thumbnails.svg
│ │ ├── fi-list.svg
│ │ ├── fi-lock.svg
│ │ ├── fi-loop.svg
│ │ ├── fi-magnifying-glass.svg
│ │ ├── fi-mail.svg
│ │ ├── fi-male-female.svg
│ │ ├── fi-male-symbol.svg
│ │ ├── fi-male.svg
│ │ ├── fi-map.svg
│ │ ├── fi-marker.svg
│ │ ├── fi-megaphone.svg
│ │ ├── fi-microphone.svg
│ │ ├── fi-minus-circle.svg
│ │ ├── fi-minus.svg
│ │ ├── fi-mobile-signal.svg
│ │ ├── fi-mobile.svg
│ │ ├── fi-monitor.svg
│ │ ├── fi-mountains.svg
│ │ ├── fi-music.svg
│ │ ├── fi-next.svg
│ │ ├── fi-no-dogs.svg
│ │ ├── fi-no-smoking.svg
│ │ ├── fi-page-add.svg
│ │ ├── fi-page-copy.svg
│ │ ├── fi-page-csv.svg
│ │ ├── fi-page-delete.svg
│ │ ├── fi-page-doc.svg
│ │ ├── fi-page-edit.svg
│ │ ├── fi-page-export-csv.svg
│ │ ├── fi-page-export-doc.svg
│ │ ├── fi-page-export-pdf.svg
│ │ ├── fi-page-export.svg
│ │ ├── fi-page-filled.svg
│ │ ├── fi-page-multiple.svg
│ │ ├── fi-page-pdf.svg
│ │ ├── fi-page-remove.svg
│ │ ├── fi-page-search.svg
│ │ ├── fi-page.svg
│ │ ├── fi-paint-bucket.svg
│ │ ├── fi-paperclip.svg
│ │ ├── fi-pause.svg
│ │ ├── fi-paw.svg
│ │ ├── fi-paypal.svg
│ │ ├── fi-pencil.svg
│ │ ├── fi-photo.svg
│ │ ├── fi-play-circle.svg
│ │ ├── fi-play-video.svg
│ │ ├── fi-play.svg
│ │ ├── fi-plus.svg
│ │ ├── fi-pound.svg
│ │ ├── fi-power.svg
│ │ ├── fi-previous.svg
│ │ ├── fi-price-tag.svg
│ │ ├── fi-pricetag-multiple.svg
│ │ ├── fi-print.svg
│ │ ├── fi-prohibited.svg
│ │ ├── fi-projection-screen.svg
│ │ ├── fi-puzzle.svg
│ │ ├── fi-quote.svg
│ │ ├── fi-record.svg
│ │ ├── fi-refresh.svg
│ │ ├── fi-results-demographics.svg
│ │ ├── fi-results.svg
│ │ ├── fi-rewind-ten.svg
│ │ ├── fi-rewind.svg
│ │ ├── fi-rss.svg
│ │ ├── fi-safety-cone.svg
│ │ ├── fi-save.svg
│ │ ├── fi-share.svg
│ │ ├── fi-sheriff-badge.svg
│ │ ├── fi-shield.svg
│ │ ├── fi-shopping-bag.svg
│ │ ├── fi-shopping-cart.svg
│ │ ├── fi-shuffle.svg
│ │ ├── fi-skull.svg
│ │ ├── fi-social-500px.svg
│ │ ├── fi-social-adobe.svg
│ │ ├── fi-social-amazon.svg
│ │ ├── fi-social-android.svg
│ │ ├── fi-social-apple.svg
│ │ ├── fi-social-behance.svg
│ │ ├── fi-social-bing.svg
│ │ ├── fi-social-blogger.svg
│ │ ├── fi-social-delicious.svg
│ │ ├── fi-social-designer-news.svg
│ │ ├── fi-social-deviant-art.svg
│ │ ├── fi-social-digg.svg
│ │ ├── fi-social-dribbble.svg
│ │ ├── fi-social-drive.svg
│ │ ├── fi-social-dropbox.svg
│ │ ├── fi-social-evernote.svg
│ │ ├── fi-social-facebook.svg
│ │ ├── fi-social-flickr.svg
│ │ ├── fi-social-forrst.svg
│ │ ├── fi-social-foursquare.svg
│ │ ├── fi-social-game-center.svg
│ │ ├── fi-social-github.svg
│ │ ├── fi-social-google-plus.svg
│ │ ├── fi-social-hacker-news.svg
│ │ ├── fi-social-hi5.svg
│ │ ├── fi-social-instagram.svg
│ │ ├── fi-social-joomla.svg
│ │ ├── fi-social-lastfm.svg
│ │ ├── fi-social-linkedin.svg
│ │ ├── fi-social-medium.svg
│ │ ├── fi-social-myspace.svg
│ │ ├── fi-social-orkut.svg
│ │ ├── fi-social-path.svg
│ │ ├── fi-social-picasa.svg
│ │ ├── fi-social-pinterest.svg
│ │ ├── fi-social-rdio.svg
│ │ ├── fi-social-reddit.svg
│ │ ├── fi-social-skillshare.svg
│ │ ├── fi-social-skype.svg
│ │ ├── fi-social-smashing-mag.svg
│ │ ├── fi-social-snapchat.svg
│ │ ├── fi-social-spotify.svg
│ │ ├── fi-social-squidoo.svg
│ │ ├── fi-social-stack-overflow.svg
│ │ ├── fi-social-steam.svg
│ │ ├── fi-social-stumbleupon.svg
│ │ ├── fi-social-treehouse.svg
│ │ ├── fi-social-tumblr.svg
│ │ ├── fi-social-twitter.svg
│ │ ├── fi-social-vimeo.svg
│ │ ├── fi-social-windows.svg
│ │ ├── fi-social-xbox.svg
│ │ ├── fi-social-yahoo.svg
│ │ ├── fi-social-yelp.svg
│ │ ├── fi-social-youtube.svg
│ │ ├── fi-social-zerply.svg
│ │ ├── fi-social-zurb.svg
│ │ ├── fi-sound.svg
│ │ ├── fi-star.svg
│ │ ├── fi-stop.svg
│ │ ├── fi-strikethrough.svg
│ │ ├── fi-subscript.svg
│ │ ├── fi-superscript.svg
│ │ ├── fi-tablet-landscape.svg
│ │ ├── fi-tablet-portrait.svg
│ │ ├── fi-target-two.svg
│ │ ├── fi-target.svg
│ │ ├── fi-telephone-accessible.svg
│ │ ├── fi-telephone.svg
│ │ ├── fi-text-color.svg
│ │ ├── fi-thumbnails.svg
│ │ ├── fi-ticket.svg
│ │ ├── fi-torso-business.svg
│ │ ├── fi-torso-female.svg
│ │ ├── fi-torso.svg
│ │ ├── fi-torsos-all-female.svg
│ │ ├── fi-torsos-all.svg
│ │ ├── fi-torsos-female-male.svg
│ │ ├── fi-torsos-male-female.svg
│ │ ├── fi-torsos.svg
│ │ ├── fi-trash.svg
│ │ ├── fi-trees.svg
│ │ ├── fi-trophy.svg
│ │ ├── fi-underline.svg
│ │ ├── fi-universal-access.svg
│ │ ├── fi-unlink.svg
│ │ ├── fi-unlock.svg
│ │ ├── fi-upload-cloud.svg
│ │ ├── fi-upload.svg
│ │ ├── fi-usb.svg
│ │ ├── fi-video.svg
│ │ ├── fi-volume-none.svg
│ │ ├── fi-volume-strike.svg
│ │ ├── fi-volume.svg
│ │ ├── fi-web.svg
│ │ ├── fi-wheelchair.svg
│ │ ├── fi-widget.svg
│ │ ├── fi-wrench.svg
│ │ ├── fi-x-circle.svg
│ │ ├── fi-x.svg
│ │ ├── fi-yen.svg
│ │ ├── fi-zoom-in.svg
│ │ └── fi-zoom-out.svg
│ ├── img
│ ├── TimesApp_icon.png
│ ├── TimesApp_icon_hover.png
│ ├── TimesApp_logo.png
│ ├── TimesApp_logo_80px.png
│ ├── calendar-disabled.png
│ ├── calendar.png
│ ├── invoice-status.png
│ ├── loadingImage.gif
│ ├── minions_404.jpg
│ └── minions_500.jpg
│ ├── index.php
│ ├── js
│ ├── Chart.min.js
│ ├── app.js
│ ├── datepicker.js
│ ├── foundation.min.js
│ ├── hoursConverter.js
│ ├── jquery.min.js
│ ├── listClients.js
│ ├── modernizr.js
│ ├── timer.js
│ └── zebra_datepicker.js
│ └── test.php
├── index.php
├── lib
└── Cake
│ ├── Cache
│ ├── Cache.php
│ ├── CacheEngine.php
│ └── Engine
│ │ ├── ApcEngine.php
│ │ ├── FileEngine.php
│ │ ├── MemcacheEngine.php
│ │ ├── RedisEngine.php
│ │ ├── WincacheEngine.php
│ │ └── XcacheEngine.php
│ ├── Config
│ ├── cacert.pem
│ ├── config.php
│ ├── routes.php
│ └── unicode
│ │ └── casefolding
│ │ ├── 0080_00ff.php
│ │ ├── 0100_017f.php
│ │ ├── 0180_024F.php
│ │ ├── 0250_02af.php
│ │ ├── 0370_03ff.php
│ │ ├── 0400_04ff.php
│ │ ├── 0500_052f.php
│ │ ├── 0530_058f.php
│ │ ├── 1e00_1eff.php
│ │ ├── 1f00_1fff.php
│ │ ├── 2100_214f.php
│ │ ├── 2150_218f.php
│ │ ├── 2460_24ff.php
│ │ ├── 2c00_2c5f.php
│ │ ├── 2c60_2c7f.php
│ │ ├── 2c80_2cff.php
│ │ └── ff00_ffef.php
│ ├── Configure
│ ├── ConfigReaderInterface.php
│ ├── IniReader.php
│ └── PhpReader.php
│ ├── Console
│ ├── Command
│ │ ├── AclShell.php
│ │ ├── ApiShell.php
│ │ ├── AppShell.php
│ │ ├── BakeShell.php
│ │ ├── CommandListShell.php
│ │ ├── ConsoleShell.php
│ │ ├── I18nShell.php
│ │ ├── SchemaShell.php
│ │ ├── ServerShell.php
│ │ ├── Task
│ │ │ ├── BakeTask.php
│ │ │ ├── ControllerTask.php
│ │ │ ├── DbConfigTask.php
│ │ │ ├── ExtractTask.php
│ │ │ ├── FixtureTask.php
│ │ │ ├── ModelTask.php
│ │ │ ├── PluginTask.php
│ │ │ ├── ProjectTask.php
│ │ │ ├── TemplateTask.php
│ │ │ ├── TestTask.php
│ │ │ └── ViewTask.php
│ │ ├── TestShell.php
│ │ ├── TestsuiteShell.php
│ │ └── UpgradeShell.php
│ ├── ConsoleErrorHandler.php
│ ├── ConsoleInput.php
│ ├── ConsoleInputArgument.php
│ ├── ConsoleInputOption.php
│ ├── ConsoleInputSubcommand.php
│ ├── ConsoleOptionParser.php
│ ├── ConsoleOutput.php
│ ├── HelpFormatter.php
│ ├── Shell.php
│ ├── ShellDispatcher.php
│ ├── TaskCollection.php
│ ├── Templates
│ │ ├── default
│ │ │ ├── actions
│ │ │ │ └── controller_actions.ctp
│ │ │ ├── classes
│ │ │ │ ├── controller.ctp
│ │ │ │ ├── fixture.ctp
│ │ │ │ ├── model.ctp
│ │ │ │ └── test.ctp
│ │ │ └── views
│ │ │ │ ├── form.ctp
│ │ │ │ ├── index.ctp
│ │ │ │ └── view.ctp
│ │ └── skel
│ │ │ ├── .htaccess
│ │ │ ├── Config
│ │ │ ├── Schema
│ │ │ │ ├── db_acl.php
│ │ │ │ ├── db_acl.sql
│ │ │ │ ├── i18n.php
│ │ │ │ ├── i18n.sql
│ │ │ │ ├── sessions.php
│ │ │ │ └── sessions.sql
│ │ │ ├── acl.ini.php
│ │ │ ├── acl.php
│ │ │ ├── bootstrap.php
│ │ │ ├── core.php
│ │ │ ├── database.php.default
│ │ │ ├── email.php.default
│ │ │ └── routes.php
│ │ │ ├── Console
│ │ │ ├── Command
│ │ │ │ ├── AppShell.php
│ │ │ │ └── Task
│ │ │ │ │ └── empty
│ │ │ ├── Templates
│ │ │ │ └── empty
│ │ │ ├── cake
│ │ │ ├── cake.bat
│ │ │ └── cake.php
│ │ │ ├── Controller
│ │ │ ├── AppController.php
│ │ │ ├── Component
│ │ │ │ └── empty
│ │ │ └── PagesController.php
│ │ │ ├── Lib
│ │ │ └── empty
│ │ │ ├── Locale
│ │ │ └── eng
│ │ │ │ └── LC_MESSAGES
│ │ │ │ └── empty
│ │ │ ├── Model
│ │ │ ├── AppModel.php
│ │ │ ├── Behavior
│ │ │ │ └── empty
│ │ │ └── Datasource
│ │ │ │ └── empty
│ │ │ ├── Plugin
│ │ │ └── empty
│ │ │ ├── Test
│ │ │ ├── Case
│ │ │ │ ├── Controller
│ │ │ │ │ └── Component
│ │ │ │ │ │ └── empty
│ │ │ │ ├── Model
│ │ │ │ │ └── Behavior
│ │ │ │ │ │ └── empty
│ │ │ │ └── View
│ │ │ │ │ └── Helper
│ │ │ │ │ └── empty
│ │ │ └── Fixture
│ │ │ │ └── empty
│ │ │ ├── Vendor
│ │ │ └── empty
│ │ │ ├── View
│ │ │ ├── Elements
│ │ │ │ └── empty
│ │ │ ├── Emails
│ │ │ │ ├── html
│ │ │ │ │ └── default.ctp
│ │ │ │ └── text
│ │ │ │ │ └── default.ctp
│ │ │ ├── Errors
│ │ │ │ ├── error400.ctp
│ │ │ │ └── error500.ctp
│ │ │ ├── Helper
│ │ │ │ └── AppHelper.php
│ │ │ ├── Layouts
│ │ │ │ ├── Emails
│ │ │ │ │ ├── html
│ │ │ │ │ │ └── default.ctp
│ │ │ │ │ └── text
│ │ │ │ │ │ └── default.ctp
│ │ │ │ ├── ajax.ctp
│ │ │ │ ├── default.ctp
│ │ │ │ ├── error.ctp
│ │ │ │ ├── flash.ctp
│ │ │ │ ├── js
│ │ │ │ │ └── default.ctp
│ │ │ │ ├── rss
│ │ │ │ │ └── default.ctp
│ │ │ │ └── xml
│ │ │ │ │ └── default.ctp
│ │ │ ├── Pages
│ │ │ │ └── home.ctp
│ │ │ └── Scaffolds
│ │ │ │ └── empty
│ │ │ ├── index.php
│ │ │ ├── tmp
│ │ │ ├── cache
│ │ │ │ ├── models
│ │ │ │ │ └── empty
│ │ │ │ ├── persistent
│ │ │ │ │ ├── empty
│ │ │ │ │ └── myapp_cake_core_cake_console_eng
│ │ │ │ └── views
│ │ │ │ │ └── empty
│ │ │ ├── logs
│ │ │ │ └── empty
│ │ │ ├── sessions
│ │ │ │ └── empty
│ │ │ └── tests
│ │ │ │ └── empty
│ │ │ └── webroot
│ │ │ ├── .htaccess
│ │ │ ├── css
│ │ │ └── cake.generic.css
│ │ │ ├── favicon.ico
│ │ │ ├── files
│ │ │ └── empty
│ │ │ ├── img
│ │ │ ├── cake.icon.png
│ │ │ ├── cake.power.gif
│ │ │ ├── test-error-icon.png
│ │ │ ├── test-fail-icon.png
│ │ │ ├── test-pass-icon.png
│ │ │ └── test-skip-icon.png
│ │ │ ├── index.php
│ │ │ ├── js
│ │ │ └── empty
│ │ │ └── test.php
│ ├── cake
│ ├── cake.bat
│ └── cake.php
│ ├── Controller
│ ├── CakeErrorController.php
│ ├── Component.php
│ ├── Component
│ │ ├── Acl
│ │ │ ├── AclInterface.php
│ │ │ ├── DbAcl.php
│ │ │ ├── IniAcl.php
│ │ │ └── PhpAcl.php
│ │ ├── AclComponent.php
│ │ ├── Auth
│ │ │ ├── AbstractPasswordHasher.php
│ │ │ ├── ActionsAuthorize.php
│ │ │ ├── BaseAuthenticate.php
│ │ │ ├── BaseAuthorize.php
│ │ │ ├── BasicAuthenticate.php
│ │ │ ├── BlowfishAuthenticate.php
│ │ │ ├── BlowfishPasswordHasher.php
│ │ │ ├── ControllerAuthorize.php
│ │ │ ├── CrudAuthorize.php
│ │ │ ├── DigestAuthenticate.php
│ │ │ ├── FormAuthenticate.php
│ │ │ └── SimplePasswordHasher.php
│ │ ├── AuthComponent.php
│ │ ├── CookieComponent.php
│ │ ├── EmailComponent.php
│ │ ├── PaginatorComponent.php
│ │ ├── RequestHandlerComponent.php
│ │ ├── SecurityComponent.php
│ │ └── SessionComponent.php
│ ├── ComponentCollection.php
│ ├── Controller.php
│ └── Scaffold.php
│ ├── Core
│ ├── App.php
│ ├── CakePlugin.php
│ ├── Configure.php
│ └── Object.php
│ ├── Error
│ ├── ErrorHandler.php
│ ├── ExceptionRenderer.php
│ └── exceptions.php
│ ├── Event
│ ├── CakeEvent.php
│ ├── CakeEventListener.php
│ └── CakeEventManager.php
│ ├── I18n
│ ├── I18n.php
│ ├── L10n.php
│ └── Multibyte.php
│ ├── LICENSE.txt
│ ├── Log
│ ├── CakeLog.php
│ ├── CakeLogInterface.php
│ ├── Engine
│ │ ├── BaseLog.php
│ │ ├── ConsoleLog.php
│ │ ├── FileLog.php
│ │ └── SyslogLog.php
│ └── LogEngineCollection.php
│ ├── Model
│ ├── AclNode.php
│ ├── Aco.php
│ ├── AcoAction.php
│ ├── Aro.php
│ ├── Behavior
│ │ ├── AclBehavior.php
│ │ ├── ContainableBehavior.php
│ │ ├── TranslateBehavior.php
│ │ └── TreeBehavior.php
│ ├── BehaviorCollection.php
│ ├── CakeSchema.php
│ ├── ConnectionManager.php
│ ├── Datasource
│ │ ├── CakeSession.php
│ │ ├── DataSource.php
│ │ ├── Database
│ │ │ ├── Mysql.php
│ │ │ ├── Postgres.php
│ │ │ ├── Sqlite.php
│ │ │ └── Sqlserver.php
│ │ ├── DboSource.php
│ │ └── Session
│ │ │ ├── CacheSession.php
│ │ │ ├── CakeSessionHandlerInterface.php
│ │ │ └── DatabaseSession.php
│ ├── I18nModel.php
│ ├── Model.php
│ ├── ModelBehavior.php
│ ├── ModelValidator.php
│ ├── Permission.php
│ └── Validator
│ │ ├── CakeValidationRule.php
│ │ └── CakeValidationSet.php
│ ├── Network
│ ├── CakeRequest.php
│ ├── CakeResponse.php
│ ├── CakeSocket.php
│ ├── Email
│ │ ├── AbstractTransport.php
│ │ ├── CakeEmail.php
│ │ ├── DebugTransport.php
│ │ ├── MailTransport.php
│ │ └── SmtpTransport.php
│ └── Http
│ │ ├── BasicAuthentication.php
│ │ ├── DigestAuthentication.php
│ │ ├── HttpResponse.php
│ │ ├── HttpSocket.php
│ │ └── HttpSocketResponse.php
│ ├── Routing
│ ├── Dispatcher.php
│ ├── DispatcherFilter.php
│ ├── Filter
│ │ ├── AssetDispatcher.php
│ │ └── CacheDispatcher.php
│ ├── Route
│ │ ├── CakeRoute.php
│ │ ├── PluginShortRoute.php
│ │ └── RedirectRoute.php
│ └── Router.php
│ ├── Test
│ ├── Case
│ │ ├── AllBehaviorsTest.php
│ │ ├── AllCacheTest.php
│ │ ├── AllComponentsTest.php
│ │ ├── AllConfigureTest.php
│ │ ├── AllConsoleTest.php
│ │ ├── AllControllerTest.php
│ │ ├── AllCoreTest.php
│ │ ├── AllDatabaseTest.php
│ │ ├── AllDbRelatedTest.php
│ │ ├── AllErrorTest.php
│ │ ├── AllEventTest.php
│ │ ├── AllHelpersTest.php
│ │ ├── AllI18nTest.php
│ │ ├── AllLogTest.php
│ │ ├── AllNetworkTest.php
│ │ ├── AllRoutingTest.php
│ │ ├── AllTestSuiteTest.php
│ │ ├── AllTestsTest.php
│ │ ├── AllUtilityTest.php
│ │ ├── AllViewTest.php
│ │ ├── BasicsTest.php
│ │ ├── Cache
│ │ │ ├── CacheTest.php
│ │ │ └── Engine
│ │ │ │ ├── ApcEngineTest.php
│ │ │ │ ├── FileEngineTest.php
│ │ │ │ ├── MemcacheEngineTest.php
│ │ │ │ ├── RedisEngineTest.php
│ │ │ │ ├── WincacheEngineTest.php
│ │ │ │ └── XcacheEngineTest.php
│ │ ├── Configure
│ │ │ ├── IniReaderTest.php
│ │ │ └── PhpReaderTest.php
│ │ ├── Console
│ │ │ ├── AllConsoleLibsTest.php
│ │ │ ├── AllConsoleTest.php
│ │ │ ├── AllShellsTest.php
│ │ │ ├── AllTasksTest.php
│ │ │ ├── Command
│ │ │ │ ├── AclShellTest.php
│ │ │ │ ├── ApiShellTest.php
│ │ │ │ ├── BakeShellTest.php
│ │ │ │ ├── CommandListShellTest.php
│ │ │ │ ├── SchemaShellTest.php
│ │ │ │ ├── Task
│ │ │ │ │ ├── ControllerTaskTest.php
│ │ │ │ │ ├── DbConfigTaskTest.php
│ │ │ │ │ ├── ExtractTaskTest.php
│ │ │ │ │ ├── FixtureTaskTest.php
│ │ │ │ │ ├── ModelTaskTest.php
│ │ │ │ │ ├── PluginTaskTest.php
│ │ │ │ │ ├── ProjectTaskTest.php
│ │ │ │ │ ├── TemplateTaskTest.php
│ │ │ │ │ ├── TestTaskTest.php
│ │ │ │ │ └── ViewTaskTest.php
│ │ │ │ └── TestShellTest.php
│ │ │ ├── ConsoleErrorHandlerTest.php
│ │ │ ├── ConsoleOptionParserTest.php
│ │ │ ├── ConsoleOutputTest.php
│ │ │ ├── HelpFormatterTest.php
│ │ │ ├── ShellDispatcherTest.php
│ │ │ ├── ShellTest.php
│ │ │ └── TaskCollectionTest.php
│ │ ├── Controller
│ │ │ ├── Component
│ │ │ │ ├── Acl
│ │ │ │ │ ├── DbAclTest.php
│ │ │ │ │ ├── IniAclTest.php
│ │ │ │ │ └── PhpAclTest.php
│ │ │ │ ├── AclComponentTest.php
│ │ │ │ ├── Auth
│ │ │ │ │ ├── ActionsAuthorizeTest.php
│ │ │ │ │ ├── BasicAuthenticateTest.php
│ │ │ │ │ ├── BlowfishAuthenticateTest.php
│ │ │ │ │ ├── ControllerAuthorizeTest.php
│ │ │ │ │ ├── CrudAuthorizeTest.php
│ │ │ │ │ ├── DigestAuthenticateTest.php
│ │ │ │ │ └── FormAuthenticateTest.php
│ │ │ │ ├── AuthComponentTest.php
│ │ │ │ ├── CookieComponentTest.php
│ │ │ │ ├── EmailComponentTest.php
│ │ │ │ ├── PaginatorComponentTest.php
│ │ │ │ ├── RequestHandlerComponentTest.php
│ │ │ │ ├── SecurityComponentTest.php
│ │ │ │ └── SessionComponentTest.php
│ │ │ ├── ComponentCollectionTest.php
│ │ │ ├── ComponentTest.php
│ │ │ ├── ControllerMergeVarsTest.php
│ │ │ ├── ControllerTest.php
│ │ │ ├── PagesControllerTest.php
│ │ │ └── ScaffoldTest.php
│ │ ├── Core
│ │ │ ├── AppTest.php
│ │ │ ├── CakePluginTest.php
│ │ │ ├── ConfigureTest.php
│ │ │ └── ObjectTest.php
│ │ ├── Error
│ │ │ ├── ErrorHandlerTest.php
│ │ │ └── ExceptionRendererTest.php
│ │ ├── Event
│ │ │ ├── CakeEventManagerTest.php
│ │ │ └── CakeEventTest.php
│ │ ├── I18n
│ │ │ ├── I18nTest.php
│ │ │ ├── L10nTest.php
│ │ │ └── MultibyteTest.php
│ │ ├── Log
│ │ │ ├── CakeLogTest.php
│ │ │ ├── Engine
│ │ │ │ ├── ConsoleLogTest.php
│ │ │ │ ├── FileLogTest.php
│ │ │ │ └── SyslogLogTest.php
│ │ │ └── LogEngineCollectionTest.php
│ │ ├── Model
│ │ │ ├── AclNodeTest.php
│ │ │ ├── Behavior
│ │ │ │ ├── AclBehaviorTest.php
│ │ │ │ ├── ContainableBehaviorTest.php
│ │ │ │ ├── TranslateBehaviorTest.php
│ │ │ │ ├── TreeBehaviorAfterTest.php
│ │ │ │ ├── TreeBehaviorNumberTest.php
│ │ │ │ ├── TreeBehaviorScopedTest.php
│ │ │ │ ├── TreeBehaviorTest.php
│ │ │ │ └── TreeBehaviorUuidTest.php
│ │ │ ├── BehaviorCollectionTest.php
│ │ │ ├── CakeSchemaTest.php
│ │ │ ├── ConnectionManagerTest.php
│ │ │ ├── Datasource
│ │ │ │ ├── CakeSessionTest.php
│ │ │ │ ├── DataSourceTest.php
│ │ │ │ ├── Database
│ │ │ │ │ ├── MysqlTest.php
│ │ │ │ │ ├── PostgresTest.php
│ │ │ │ │ ├── SqliteTest.php
│ │ │ │ │ └── SqlserverTest.php
│ │ │ │ ├── DboSourceTest.php
│ │ │ │ └── Session
│ │ │ │ │ ├── CacheSessionTest.php
│ │ │ │ │ └── DatabaseSessionTest.php
│ │ │ ├── ModelCrossSchemaHabtmTest.php
│ │ │ ├── ModelDeleteTest.php
│ │ │ ├── ModelIntegrationTest.php
│ │ │ ├── ModelReadTest.php
│ │ │ ├── ModelTest.php
│ │ │ ├── ModelTestBase.php
│ │ │ ├── ModelValidationTest.php
│ │ │ ├── ModelWriteTest.php
│ │ │ ├── Validator
│ │ │ │ ├── CakeValidationRuleTest.php
│ │ │ │ └── CakeValidationSetTest.php
│ │ │ └── models.php
│ │ ├── Network
│ │ │ ├── CakeRequestTest.php
│ │ │ ├── CakeResponseTest.php
│ │ │ ├── CakeSocketTest.php
│ │ │ ├── Email
│ │ │ │ ├── CakeEmailTest.php
│ │ │ │ ├── DebugTransportTest.php
│ │ │ │ ├── MailTransportTest.php
│ │ │ │ └── SmtpTransportTest.php
│ │ │ └── Http
│ │ │ │ ├── BasicAuthenticationTest.php
│ │ │ │ ├── DigestAuthenticationTest.php
│ │ │ │ ├── HttpResponseTest.php
│ │ │ │ └── HttpSocketTest.php
│ │ ├── Routing
│ │ │ ├── DispatcherTest.php
│ │ │ ├── Filter
│ │ │ │ └── AssetDispatcherTest.php
│ │ │ ├── Route
│ │ │ │ ├── CakeRouteTest.php
│ │ │ │ ├── PluginShortRouteTest.php
│ │ │ │ └── RedirectRouteTest.php
│ │ │ └── RouterTest.php
│ │ ├── TestSuite
│ │ │ ├── CakeTestCaseTest.php
│ │ │ ├── CakeTestFixtureTest.php
│ │ │ ├── CakeTestSuiteTest.php
│ │ │ ├── ControllerTestCaseTest.php
│ │ │ └── HtmlCoverageReportTest.php
│ │ ├── Utility
│ │ │ ├── CakeNumberTest.php
│ │ │ ├── CakeTimeTest.php
│ │ │ ├── ClassRegistryTest.php
│ │ │ ├── DebuggerTest.php
│ │ │ ├── FileTest.php
│ │ │ ├── FolderTest.php
│ │ │ ├── HashTest.php
│ │ │ ├── InflectorTest.php
│ │ │ ├── ObjectCollectionTest.php
│ │ │ ├── SanitizeTest.php
│ │ │ ├── SecurityTest.php
│ │ │ ├── SetTest.php
│ │ │ ├── StringTest.php
│ │ │ ├── ValidationTest.php
│ │ │ └── XmlTest.php
│ │ └── View
│ │ │ ├── Helper
│ │ │ ├── CacheHelperTest.php
│ │ │ ├── FormHelperTest.php
│ │ │ ├── HtmlHelperTest.php
│ │ │ ├── JqueryEngineHelperTest.php
│ │ │ ├── JsHelperTest.php
│ │ │ ├── MootoolsEngineHelperTest.php
│ │ │ ├── NumberHelperTest.php
│ │ │ ├── PaginatorHelperTest.php
│ │ │ ├── PrototypeEngineHelperTest.php
│ │ │ ├── RssHelperTest.php
│ │ │ ├── SessionHelperTest.php
│ │ │ ├── TextHelperTest.php
│ │ │ └── TimeHelperTest.php
│ │ │ ├── HelperCollectionTest.php
│ │ │ ├── HelperTest.php
│ │ │ ├── JsonViewTest.php
│ │ │ ├── MediaViewTest.php
│ │ │ ├── ScaffoldViewTest.php
│ │ │ ├── ThemeViewTest.php
│ │ │ ├── ViewTest.php
│ │ │ └── XmlViewTest.php
│ ├── Fixture
│ │ ├── AccountFixture.php
│ │ ├── AcoActionFixture.php
│ │ ├── AcoFixture.php
│ │ ├── AcoTwoFixture.php
│ │ ├── AdFixture.php
│ │ ├── AdvertisementFixture.php
│ │ ├── AfterTreeFixture.php
│ │ ├── AnotherArticleFixture.php
│ │ ├── AppleFixture.php
│ │ ├── ArmorFixture.php
│ │ ├── ArmorsPlayerFixture.php
│ │ ├── AroFixture.php
│ │ ├── AroTwoFixture.php
│ │ ├── ArosAcoFixture.php
│ │ ├── ArosAcoTwoFixture.php
│ │ ├── ArticleFeaturedFixture.php
│ │ ├── ArticleFeaturedsTagsFixture.php
│ │ ├── ArticleFixture.php
│ │ ├── ArticlesTagFixture.php
│ │ ├── AssertTagsTestCase.php
│ │ ├── AttachmentFixture.php
│ │ ├── AuthUserCustomFieldFixture.php
│ │ ├── AuthUserFixture.php
│ │ ├── AuthorFixture.php
│ │ ├── BakeArticleFixture.php
│ │ ├── BakeArticlesBakeTagFixture.php
│ │ ├── BakeCommentFixture.php
│ │ ├── BakeTagFixture.php
│ │ ├── BasketFixture.php
│ │ ├── BidFixture.php
│ │ ├── BiddingFixture.php
│ │ ├── BiddingMessageFixture.php
│ │ ├── BinaryTestFixture.php
│ │ ├── BookFixture.php
│ │ ├── CacheTestModelFixture.php
│ │ ├── CakeSessionFixture.php
│ │ ├── CallbackFixture.php
│ │ ├── CampaignFixture.php
│ │ ├── CategoryFixture.php
│ │ ├── CategoryThreadFixture.php
│ │ ├── CdFixture.php
│ │ ├── CommentFixture.php
│ │ ├── ContentAccountFixture.php
│ │ ├── ContentFixture.php
│ │ ├── CounterCachePostFixture.php
│ │ ├── CounterCachePostNonstandardPrimaryKeyFixture.php
│ │ ├── CounterCacheUserFixture.php
│ │ ├── CounterCacheUserNonstandardPrimaryKeyFixture.php
│ │ ├── DataTestFixture.php
│ │ ├── DatatypeFixture.php
│ │ ├── DependencyFixture.php
│ │ ├── DeviceFixture.php
│ │ ├── DeviceTypeCategoryFixture.php
│ │ ├── DeviceTypeFixture.php
│ │ ├── DocumentDirectoryFixture.php
│ │ ├── DocumentFixture.php
│ │ ├── DomainFixture.php
│ │ ├── DomainsSiteFixture.php
│ │ ├── ExteriorTypeCategoryFixture.php
│ │ ├── FeatureSetFixture.php
│ │ ├── FeaturedFixture.php
│ │ ├── FilmFileFixture.php
│ │ ├── FixturizedTestCase.php
│ │ ├── FlagTreeFixture.php
│ │ ├── FruitFixture.php
│ │ ├── FruitsUuidTagFixture.php
│ │ ├── GroupUpdateAllFixture.php
│ │ ├── GuildFixture.php
│ │ ├── GuildsPlayerFixture.php
│ │ ├── HomeFixture.php
│ │ ├── ImageFixture.php
│ │ ├── InnoFixture.php
│ │ ├── ItemFixture.php
│ │ ├── ItemsPortfolioFixture.php
│ │ ├── JoinABFixture.php
│ │ ├── JoinACFixture.php
│ │ ├── JoinAFixture.php
│ │ ├── JoinBFixture.php
│ │ ├── JoinCFixture.php
│ │ ├── JoinThingFixture.php
│ │ ├── MessageFixture.php
│ │ ├── MyCategoriesMyProductsFixture.php
│ │ ├── MyCategoriesMyUsersFixture.php
│ │ ├── MyCategoryFixture.php
│ │ ├── MyProductFixture.php
│ │ ├── MyUserFixture.php
│ │ ├── NodeFixture.php
│ │ ├── NumberTreeFixture.php
│ │ ├── NumberTreeTwoFixture.php
│ │ ├── NumericArticleFixture.php
│ │ ├── OverallFavoriteFixture.php
│ │ ├── PersonFixture.php
│ │ ├── PlayerFixture.php
│ │ ├── PortfolioFixture.php
│ │ ├── PostFixture.php
│ │ ├── PostsTagFixture.php
│ │ ├── PrefixTestFixture.php
│ │ ├── PrimaryModelFixture.php
│ │ ├── ProductFixture.php
│ │ ├── ProductUpdateAllFixture.php
│ │ ├── ProjectFixture.php
│ │ ├── SampleFixture.php
│ │ ├── SecondaryModelFixture.php
│ │ ├── SessionFixture.php
│ │ ├── SiteFixture.php
│ │ ├── SomethingElseFixture.php
│ │ ├── SomethingFixture.php
│ │ ├── StoriesTagFixture.php
│ │ ├── StoryFixture.php
│ │ ├── SyfileFixture.php
│ │ ├── TagFixture.php
│ │ ├── TestPluginArticleFixture.php
│ │ ├── TestPluginCommentFixture.php
│ │ ├── ThePaperMonkiesFixture.php
│ │ ├── ThreadFixture.php
│ │ ├── TranslateArticleFixture.php
│ │ ├── TranslateFixture.php
│ │ ├── TranslateTableFixture.php
│ │ ├── TranslateWithPrefixFixture.php
│ │ ├── TranslatedArticleFixture.php
│ │ ├── TranslatedItemFixture.php
│ │ ├── UnconventionalTreeFixture.php
│ │ ├── UnderscoreFieldFixture.php
│ │ ├── UserFixture.php
│ │ ├── UuidFixture.php
│ │ ├── UuidTagFixture.php
│ │ ├── UuidTreeFixture.php
│ │ ├── UuiditemFixture.php
│ │ ├── UuiditemsUuidportfolioFixture.php
│ │ ├── UuiditemsUuidportfolioNumericidFixture.php
│ │ ├── UuidportfolioFixture.php
│ │ ├── rss.xml
│ │ ├── sample.xml
│ │ ├── soap_request.xml
│ │ └── soap_response.xml
│ ├── bake_compare
│ │ └── Controller
│ │ │ ├── ActionsUsingSessions.ctp
│ │ │ ├── ActionsWithNoSessions.ctp
│ │ │ ├── NoActions.ctp
│ │ │ ├── NoHelpersOrComponents.ctp
│ │ │ └── Scaffold.ctp
│ └── test_app
│ │ ├── Config
│ │ ├── acl.ini
│ │ ├── acl.ini.php
│ │ ├── acl.php
│ │ ├── empty.ini
│ │ ├── empty.php
│ │ ├── htmlhelper_minimized.ini
│ │ ├── htmlhelper_tags.php
│ │ ├── nested.ini
│ │ ├── no_ini_extension
│ │ ├── no_php_extension
│ │ ├── no_section.ini
│ │ ├── routes.php
│ │ ├── var_test.php
│ │ └── var_test2.php
│ │ ├── Console
│ │ ├── Command
│ │ │ ├── SampleShell.php
│ │ │ └── Task
│ │ │ │ └── empty
│ │ └── Templates
│ │ │ └── test
│ │ │ ├── classes
│ │ │ └── test_object.ctp
│ │ │ └── views
│ │ │ └── admin_edit.ctp
│ │ ├── Controller
│ │ ├── AppController.php
│ │ ├── Component
│ │ │ └── empty
│ │ ├── PagesController.php
│ │ ├── TestAppsErrorController.php
│ │ ├── TestConfigsController.php
│ │ ├── TestsAppsController.php
│ │ └── TestsAppsPostsController.php
│ │ ├── Error
│ │ └── TestAppsExceptionRenderer.php
│ │ ├── Lib
│ │ ├── Cache
│ │ │ └── Engine
│ │ │ │ └── TestAppCacheEngine.php
│ │ ├── Library.php
│ │ ├── Log
│ │ │ └── Engine
│ │ │ │ └── TestAppLog.php
│ │ └── Utility
│ │ │ └── TestUtilityClass.php
│ │ ├── Locale
│ │ ├── cache_test_po
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── default.po
│ │ │ │ ├── dom1.po
│ │ │ │ └── dom2.po
│ │ ├── eng
│ │ │ └── LC_MESSAGES
│ │ │ │ └── validation_messages.po
│ │ ├── ja_jp
│ │ │ └── LC_TIME
│ │ ├── nld
│ │ │ └── LC_TIME
│ │ ├── po
│ │ │ ├── LC_MESSAGES
│ │ │ │ └── default.po
│ │ │ ├── LC_MONETARY
│ │ │ │ └── default.po
│ │ │ └── LC_TIME
│ │ ├── rule_0_mo
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.mo
│ │ │ │ └── default.mo
│ │ ├── rule_0_po
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.po
│ │ │ │ └── default.po
│ │ ├── rule_10_mo
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.mo
│ │ │ │ └── default.mo
│ │ ├── rule_10_po
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.po
│ │ │ │ └── default.po
│ │ ├── rule_11_mo
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.mo
│ │ │ │ └── default.mo
│ │ ├── rule_11_po
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.po
│ │ │ │ └── default.po
│ │ ├── rule_12_mo
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.mo
│ │ │ │ └── default.mo
│ │ ├── rule_12_po
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.po
│ │ │ │ └── default.po
│ │ ├── rule_13_mo
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.mo
│ │ │ │ └── default.mo
│ │ ├── rule_13_po
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.po
│ │ │ │ └── default.po
│ │ ├── rule_14_mo
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.mo
│ │ │ │ └── default.mo
│ │ ├── rule_14_po
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.po
│ │ │ │ └── default.po
│ │ ├── rule_1_mo
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.mo
│ │ │ │ └── default.mo
│ │ ├── rule_1_po
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.po
│ │ │ │ └── default.po
│ │ ├── rule_2_mo
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.mo
│ │ │ │ └── default.mo
│ │ ├── rule_2_po
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.po
│ │ │ │ └── default.po
│ │ ├── rule_3_mo
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.mo
│ │ │ │ └── default.mo
│ │ ├── rule_3_po
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.po
│ │ │ │ └── default.po
│ │ ├── rule_4_mo
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.mo
│ │ │ │ └── default.mo
│ │ ├── rule_4_po
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.po
│ │ │ │ └── default.po
│ │ ├── rule_5_mo
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.mo
│ │ │ │ └── default.mo
│ │ ├── rule_5_po
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.po
│ │ │ │ └── default.po
│ │ ├── rule_6_mo
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.mo
│ │ │ │ └── default.mo
│ │ ├── rule_6_po
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.po
│ │ │ │ └── default.po
│ │ ├── rule_7_mo
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.mo
│ │ │ │ └── default.mo
│ │ ├── rule_7_po
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.po
│ │ │ │ └── default.po
│ │ ├── rule_8_mo
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.mo
│ │ │ │ └── default.mo
│ │ ├── rule_8_po
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.po
│ │ │ │ └── default.po
│ │ ├── rule_9_mo
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.mo
│ │ │ │ └── default.mo
│ │ ├── rule_9_po
│ │ │ └── LC_MESSAGES
│ │ │ │ ├── core.po
│ │ │ │ └── default.po
│ │ └── time_test
│ │ │ └── LC_TIME
│ │ ├── Model
│ │ ├── AppModel.php
│ │ ├── Behavior
│ │ │ ├── PersisterOneBehaviorBehavior.php
│ │ │ └── PersisterTwoBehaviorBehavior.php
│ │ ├── Comment.php
│ │ ├── Datasource
│ │ │ ├── Database
│ │ │ │ └── TestLocalDriver.php
│ │ │ ├── Session
│ │ │ │ └── TestAppLibSession.php
│ │ │ ├── Test2OtherSource.php
│ │ │ └── Test2Source.php
│ │ ├── Extract.php
│ │ ├── PersisterOne.php
│ │ ├── PersisterTwo.php
│ │ └── Post.php
│ │ ├── Plugin
│ │ ├── PluginJs
│ │ │ ├── Config
│ │ │ │ └── bootstrap.php
│ │ │ └── webroot
│ │ │ │ └── js
│ │ │ │ ├── one
│ │ │ │ └── plugin_one.js
│ │ │ │ └── plugin_js.js
│ │ ├── TestPlugin
│ │ │ ├── Config
│ │ │ │ ├── Schema
│ │ │ │ │ └── schema.php
│ │ │ │ ├── acl.ini.php
│ │ │ │ ├── bootstrap.php
│ │ │ │ ├── custom_config.php
│ │ │ │ ├── load.php
│ │ │ │ ├── more.load.php
│ │ │ │ ├── nested.ini
│ │ │ │ └── routes.php
│ │ │ ├── Console
│ │ │ │ ├── Command
│ │ │ │ │ ├── ExampleShell.php
│ │ │ │ │ └── Task
│ │ │ │ │ │ └── OtherTaskTask.php
│ │ │ │ └── Templates
│ │ │ │ │ └── empty
│ │ │ ├── Controller
│ │ │ │ ├── Component
│ │ │ │ │ ├── OtherComponent.php
│ │ │ │ │ ├── PluginsComponent.php
│ │ │ │ │ ├── TestPluginComponent.php
│ │ │ │ │ └── TestPluginOtherComponent.php
│ │ │ │ ├── TestPluginAppController.php
│ │ │ │ ├── TestPluginController.php
│ │ │ │ └── TestsController.php
│ │ │ ├── Lib
│ │ │ │ ├── Cache
│ │ │ │ │ └── Engine
│ │ │ │ │ │ └── TestPluginCacheEngine.php
│ │ │ │ ├── Custom
│ │ │ │ │ └── Package
│ │ │ │ │ │ └── CustomLibClass.php
│ │ │ │ ├── Error
│ │ │ │ │ └── TestPluginExceptionRenderer.php
│ │ │ │ ├── Log
│ │ │ │ │ └── Engine
│ │ │ │ │ │ └── TestPluginLog.php
│ │ │ │ ├── Routing
│ │ │ │ │ ├── Filter
│ │ │ │ │ │ ├── Test2DispatcherFilter.php
│ │ │ │ │ │ └── TestDispatcherFilter.php
│ │ │ │ │ └── Route
│ │ │ │ │ │ └── TestRoute.php
│ │ │ │ ├── TestPluginLibrary.php
│ │ │ │ └── TestPluginOtherLibrary.php
│ │ │ ├── Locale
│ │ │ │ └── po
│ │ │ │ │ ├── LC_MESSAGES
│ │ │ │ │ └── test_plugin.po
│ │ │ │ │ └── LC_MONETARY
│ │ │ │ │ └── test_plugin.po
│ │ │ ├── Model
│ │ │ │ ├── Behavior
│ │ │ │ │ ├── TestPluginPersisterOneBehavior.php
│ │ │ │ │ └── TestPluginPersisterTwoBehavior.php
│ │ │ │ ├── Datasource
│ │ │ │ │ ├── Database
│ │ │ │ │ │ ├── DboDummy.php
│ │ │ │ │ │ └── TestDriver.php
│ │ │ │ │ ├── Session
│ │ │ │ │ │ └── TestPluginSession.php
│ │ │ │ │ ├── TestOtherSource.php
│ │ │ │ │ └── TestSource.php
│ │ │ │ ├── TestPluginAppModel.php
│ │ │ │ ├── TestPluginAuthUser.php
│ │ │ │ ├── TestPluginAuthors.php
│ │ │ │ ├── TestPluginComment.php
│ │ │ │ └── TestPluginPost.php
│ │ │ ├── Utility
│ │ │ │ └── TestPluginEngine.php
│ │ │ ├── Vendor
│ │ │ │ ├── Example
│ │ │ │ │ └── ExampleExample.php
│ │ │ │ ├── sample
│ │ │ │ │ └── sample_plugin.php
│ │ │ │ └── welcome.php
│ │ │ ├── View
│ │ │ │ ├── Elements
│ │ │ │ │ ├── plugin_element.ctp
│ │ │ │ │ ├── sub_dir
│ │ │ │ │ │ └── sub_element.ctp
│ │ │ │ │ ├── test_plugin_element.ctp
│ │ │ │ │ └── translate.ctp
│ │ │ │ ├── Emails
│ │ │ │ │ └── text
│ │ │ │ │ │ └── test_plugin_tpl.ctp
│ │ │ │ ├── Helper
│ │ │ │ │ ├── OtherHelperHelper.php
│ │ │ │ │ ├── PluggedHelperHelper.php
│ │ │ │ │ └── TestPluginAppHelper.php
│ │ │ │ ├── Layouts
│ │ │ │ │ ├── Emails
│ │ │ │ │ │ └── text
│ │ │ │ │ │ │ └── plug_default.ctp
│ │ │ │ │ └── default.ctp
│ │ │ │ └── Tests
│ │ │ │ │ ├── index.ctp
│ │ │ │ │ └── scaffold.form.ctp
│ │ │ └── webroot
│ │ │ │ ├── css
│ │ │ │ ├── test_plugin_asset.css
│ │ │ │ ├── theme_one.htc
│ │ │ │ └── unknown.extension
│ │ │ │ ├── flash
│ │ │ │ └── plugin_test.swf
│ │ │ │ ├── img
│ │ │ │ └── cake.icon.gif
│ │ │ │ ├── js
│ │ │ │ └── test_plugin
│ │ │ │ │ └── test.js
│ │ │ │ ├── pdfs
│ │ │ │ └── plugin_test.pdf
│ │ │ │ └── root.js
│ │ └── TestPluginTwo
│ │ │ ├── Config
│ │ │ └── bootstrap.php
│ │ │ └── Console
│ │ │ ├── Command
│ │ │ ├── ExampleShell.php
│ │ │ ├── Task
│ │ │ │ └── empty
│ │ │ └── WelcomeShell.php
│ │ │ └── Templates
│ │ │ └── empty
│ │ ├── Utility
│ │ └── TestAppEngine.php
│ │ ├── Vendor
│ │ ├── Test
│ │ │ ├── MyTest.php
│ │ │ └── hello.php
│ │ ├── css
│ │ │ └── test_asset.css
│ │ ├── img
│ │ │ ├── test.jpg
│ │ │ └── test_2.JPG
│ │ ├── sample
│ │ │ └── configure_test_vendor_sample.php
│ │ ├── somename
│ │ │ └── some.name.php
│ │ └── welcome.php
│ │ ├── View
│ │ ├── Elements
│ │ │ ├── extended_element.ctp
│ │ │ ├── extended_missing_element.ctp
│ │ │ ├── html_call.ctp
│ │ │ ├── nocache
│ │ │ │ ├── contains_nocache.ctp
│ │ │ │ ├── plain.ctp
│ │ │ │ ├── sub1.ctp
│ │ │ │ └── sub2.ctp
│ │ │ ├── parent_element.ctp
│ │ │ ├── session_helper.ctp
│ │ │ ├── test_element.ctp
│ │ │ ├── test_element.xml
│ │ │ └── type_check.ctp
│ │ ├── Emails
│ │ │ ├── html
│ │ │ │ ├── custom.ctp
│ │ │ │ ├── default.ctp
│ │ │ │ ├── html.ctp
│ │ │ │ ├── image.ctp
│ │ │ │ ├── japanese.ctp
│ │ │ │ └── nested_element.ctp
│ │ │ └── text
│ │ │ │ ├── custom.ctp
│ │ │ │ ├── custom_helper.ctp
│ │ │ │ ├── default.ctp
│ │ │ │ ├── japanese.ctp
│ │ │ │ └── wide.ctp
│ │ ├── Errors
│ │ │ ├── error400.ctp
│ │ │ └── error500.ctp
│ │ ├── Helper
│ │ │ └── BananaHelper.php
│ │ ├── Layouts
│ │ │ ├── Emails
│ │ │ │ ├── html
│ │ │ │ │ ├── default.ctp
│ │ │ │ │ ├── japanese.ctp
│ │ │ │ │ └── thin.ctp
│ │ │ │ └── text
│ │ │ │ │ ├── default.ctp
│ │ │ │ │ └── japanese.ctp
│ │ │ ├── ajax.ctp
│ │ │ ├── ajax2.ctp
│ │ │ ├── banana.ctp
│ │ │ ├── cache_empty_sections.ctp
│ │ │ ├── cache_layout.ctp
│ │ │ ├── default.ctp
│ │ │ ├── flash.ctp
│ │ │ ├── js
│ │ │ │ └── default.ctp
│ │ │ ├── json
│ │ │ │ └── default.ctp
│ │ │ ├── multi_cache.ctp
│ │ │ ├── rss
│ │ │ │ └── default.ctp
│ │ │ └── xml
│ │ │ │ └── default.ctp
│ │ ├── Pages
│ │ │ ├── extract.ctp
│ │ │ ├── home.ctp
│ │ │ └── page.home.ctp
│ │ ├── Posts
│ │ │ ├── alt_ext.alt
│ │ │ ├── cache_empty_sections.ctp
│ │ │ ├── cache_form.ctp
│ │ │ ├── extend_element.ctp
│ │ │ ├── extend_loop.ctp
│ │ │ ├── extend_loop_inner.ctp
│ │ │ ├── extend_missing_element.ctp
│ │ │ ├── extend_self.ctp
│ │ │ ├── extend_with_element.ctp
│ │ │ ├── helper_overwrite.ctp
│ │ │ ├── index.ctp
│ │ │ ├── json
│ │ │ │ └── index.ctp
│ │ │ ├── multiple_nocache.ctp
│ │ │ ├── nested_extends.ctp
│ │ │ ├── nocache_multiple_element.ctp
│ │ │ ├── open_block.ctp
│ │ │ ├── parent_1.ctp
│ │ │ ├── parent_2.ctp
│ │ │ ├── parent_view.ctp
│ │ │ ├── scaffold.form.ctp
│ │ │ ├── sequencial_nocache.ctp
│ │ │ ├── test_nocache_tags.ctp
│ │ │ └── xml
│ │ │ │ └── index.ctp
│ │ ├── Scaffolds
│ │ │ └── empty
│ │ ├── TestsApps
│ │ │ ├── index.ctp
│ │ │ └── json
│ │ │ │ └── index.ctp
│ │ └── Themed
│ │ │ └── TestTheme
│ │ │ ├── Elements
│ │ │ └── test_element.ctp
│ │ │ ├── Emails
│ │ │ └── text
│ │ │ │ └── themed.ctp
│ │ │ ├── Layouts
│ │ │ └── default.ctp
│ │ │ ├── Plugin
│ │ │ └── TestPlugin
│ │ │ │ ├── Emails
│ │ │ │ └── text
│ │ │ │ │ └── test_plugin_tpl.ctp
│ │ │ │ ├── Layouts
│ │ │ │ └── plugin_default.ctp
│ │ │ │ └── Tests
│ │ │ │ └── index.ctp
│ │ │ ├── Posts
│ │ │ ├── index.ctp
│ │ │ ├── scaffold.index.ctp
│ │ │ └── themed.ctp
│ │ │ └── webroot
│ │ │ ├── css
│ │ │ ├── test_asset.css
│ │ │ └── theme_webroot.css
│ │ │ ├── flash
│ │ │ └── theme_test.swf
│ │ │ ├── img
│ │ │ ├── cake.power.gif
│ │ │ └── test.jpg
│ │ │ ├── js
│ │ │ ├── one
│ │ │ │ └── theme_one.js
│ │ │ └── theme.js
│ │ │ ├── pdfs
│ │ │ └── theme_test.pdf
│ │ │ └── space image.text
│ │ ├── tmp
│ │ └── empty
│ │ └── webroot
│ │ ├── img
│ │ └── cake.power.gif
│ │ └── theme
│ │ └── test_theme
│ │ ├── css
│ │ ├── theme_webroot.css
│ │ └── webroot_test.css
│ │ └── img
│ │ ├── cake.power.gif
│ │ └── test.jpg
│ ├── TestSuite
│ ├── CakeTestCase.php
│ ├── CakeTestLoader.php
│ ├── CakeTestRunner.php
│ ├── CakeTestSuite.php
│ ├── CakeTestSuiteCommand.php
│ ├── CakeTestSuiteDispatcher.php
│ ├── ControllerTestCase.php
│ ├── Coverage
│ │ ├── BaseCoverageReport.php
│ │ ├── HtmlCoverageReport.php
│ │ └── TextCoverageReport.php
│ ├── Fixture
│ │ ├── CakeFixtureManager.php
│ │ ├── CakeTestFixture.php
│ │ └── CakeTestModel.php
│ ├── Reporter
│ │ ├── CakeBaseReporter.php
│ │ ├── CakeHtmlReporter.php
│ │ └── CakeTextReporter.php
│ └── templates
│ │ ├── footer.php
│ │ ├── header.php
│ │ ├── menu.php
│ │ ├── missing_connection.php
│ │ ├── phpunit.php
│ │ └── xdebug.php
│ ├── Utility
│ ├── CakeNumber.php
│ ├── CakeTime.php
│ ├── ClassRegistry.php
│ ├── Debugger.php
│ ├── File.php
│ ├── Folder.php
│ ├── Hash.php
│ ├── Inflector.php
│ ├── ObjectCollection.php
│ ├── Sanitize.php
│ ├── Security.php
│ ├── Set.php
│ ├── String.php
│ ├── Validation.php
│ └── Xml.php
│ ├── VERSION.txt
│ ├── View
│ ├── Elements
│ │ ├── exception_stack_trace.ctp
│ │ └── sql_dump.ctp
│ ├── Errors
│ │ ├── fatal_error.ctp
│ │ ├── missing_action.ctp
│ │ ├── missing_behavior.ctp
│ │ ├── missing_component.ctp
│ │ ├── missing_connection.ctp
│ │ ├── missing_controller.ctp
│ │ ├── missing_database.ctp
│ │ ├── missing_datasource.ctp
│ │ ├── missing_datasource_config.ctp
│ │ ├── missing_helper.ctp
│ │ ├── missing_layout.ctp
│ │ ├── missing_plugin.ctp
│ │ ├── missing_table.ctp
│ │ ├── missing_view.ctp
│ │ ├── pdo_error.ctp
│ │ ├── private_action.ctp
│ │ └── scaffold_error.ctp
│ ├── Helper.php
│ ├── Helper
│ │ ├── CacheHelper.php
│ │ ├── FormHelper.php
│ │ ├── HtmlHelper.php
│ │ ├── JqueryEngineHelper.php
│ │ ├── JsBaseEngineHelper.php
│ │ ├── JsHelper.php
│ │ ├── MootoolsEngineHelper.php
│ │ ├── NumberHelper.php
│ │ ├── PaginatorHelper.php
│ │ ├── PrototypeEngineHelper.php
│ │ ├── RssHelper.php
│ │ ├── SessionHelper.php
│ │ ├── TextHelper.php
│ │ └── TimeHelper.php
│ ├── HelperCollection.php
│ ├── JsonView.php
│ ├── MediaView.php
│ ├── ScaffoldView.php
│ ├── Scaffolds
│ │ ├── form.ctp
│ │ ├── index.ctp
│ │ └── view.ctp
│ ├── ThemeView.php
│ ├── View.php
│ ├── ViewBlock.php
│ └── XmlView.php
│ ├── basics.php
│ └── bootstrap.php
├── plugins
└── empty
├── timesapp_empty_v0.1.9.sql
├── timesapp_withData_v0.2.1.sql
└── vendors
└── empty
/.htaccess:
--------------------------------------------------------------------------------
1 |
2 | Paginator->counter(array( 4 | 'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}') 5 | )); 6 | ?> 7 |
8 |Download mobile app for android devices.
7 | Download 8 |TimesApp
28 | 29 | -------------------------------------------------------------------------------- /app/View/Layouts/Emails/text/default.ctp: -------------------------------------------------------------------------------- 1 | 19 | fetch('content'); ?> 20 | 21 | This email was sent using the CakePHP Framework, http://cakephp.org. 22 | -------------------------------------------------------------------------------- /app/View/Layouts/ajax.ctp: -------------------------------------------------------------------------------- 1 | 19 | fetch('content'); ?> 20 | -------------------------------------------------------------------------------- /app/View/Layouts/js/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/View/Layouts/pdf/default.ctp: -------------------------------------------------------------------------------- 1 | Rss->document( 10 | $this->Rss->channel( 11 | array(), $channel, $this->fetch('content') 12 | ) 13 | ); 14 | ?> 15 | -------------------------------------------------------------------------------- /app/View/Layouts/xml/default.ctp: -------------------------------------------------------------------------------- 1 | fetch('content'); ?> 2 | -------------------------------------------------------------------------------- /app/View/Mobile/index.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/View/Payments/get_amount_by_invoice.ctp: -------------------------------------------------------------------------------- 1 | 4 | Please, add an amount greater than 0.00 and lesser than or equal to . 5 | -------------------------------------------------------------------------------- /app/View/Products/add.ctp: -------------------------------------------------------------------------------- 1 |12 | : 13 | '{$url}'" 16 | ); ?> 17 |
18 | 0): 20 | echo $this->element('exception_stack_trace'); 21 | endif; 22 | ?> 23 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Errors/error500.ctp: -------------------------------------------------------------------------------- 1 | 10 | 11 |12 | : 13 | 14 |
15 | 0): 17 | echo $this->element('exception_stack_trace'); 18 | endif; 19 | ?> 20 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Helper/AppHelper.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 |This email was sent using the CakePHP Framework
19 | 20 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Layouts/Emails/text/default.ctp: -------------------------------------------------------------------------------- 1 | 19 | fetch('content'); ?> 20 | 21 | This email was sent using the CakePHP Framework, http://cakephp.org. 22 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Layouts/ajax.ctp: -------------------------------------------------------------------------------- 1 | 10 | fetch('content'); ?> 11 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Layouts/flash.ctp: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | Html->charset(); ?> 14 |F. In Element With No Cache Tags
4 | log('6. in element with no cache tags') ?> 5 | 6 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/nocache/plain.ctp: -------------------------------------------------------------------------------- 1 |B. In Plain Element
3 | log('2. in plain element') ?> 4 | 5 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/nocache/sub1.ctp: -------------------------------------------------------------------------------- 1 | element('nocache/sub2'); ?> 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/nocache/sub2.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/parent_element.ctp: -------------------------------------------------------------------------------- 1 | Parent Element. 2 | fetch('content'); ?> 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/session_helper.ctp: -------------------------------------------------------------------------------- 1 |test element
2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/type_check.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/html/custom.ctp: -------------------------------------------------------------------------------- 1 |Here is your value:
2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/html/default.ctp: -------------------------------------------------------------------------------- 1 | ' . $line . ''; 6 | endforeach; 7 | ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/html/image.ctp: -------------------------------------------------------------------------------- 1 | Html->image('image.gif', array( 4 | 'alt' => 'cool image', 5 | 'width' => 100, 6 | 'height' => 100, 7 | 'fullBase' => true, 8 | )); 9 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/html/japanese.ctp: -------------------------------------------------------------------------------- 1 |ここにあなたの設定した値が入ります:
2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/html/nested_element.ctp: -------------------------------------------------------------------------------- 1 | Before the element. 2 | element('html_call'); ?> 3 | After the element. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/text/custom.ctp: -------------------------------------------------------------------------------- 1 | Here is your value: 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/text/custom_helper.ctp: -------------------------------------------------------------------------------- 1 | Right now: Time->toAtom($time); ?> 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/text/default.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/text/japanese.ctp: -------------------------------------------------------------------------------- 1 | ここにあなたの設定した値が入ります: 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/text/wide.ctp: -------------------------------------------------------------------------------- 1 | This element has some text that is just too wide to comply with email standards. 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Errors/error400.ctp: -------------------------------------------------------------------------------- 1 | 2 |3 | : 4 | '{$url}'" 7 | ); ?> 8 |
9 | 0): 11 | echo $this->element('exception_stack_trace'); 12 | endif; 13 | ?> 14 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Errors/error500.ctp: -------------------------------------------------------------------------------- 1 | 2 |3 | : 4 | 5 |
6 | 0): 8 | echo $this->element('exception_stack_trace'); 9 | endif; 10 | ?> 11 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Helper/BananaHelper.php: -------------------------------------------------------------------------------- 1 | peeled'; 9 | } 10 | 11 | } 12 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/Emails/html/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |This email was sent using the CakePHP Framework
12 | 13 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/Emails/html/japanese.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |このメールは CakePHP Framework を利用して送信しました。
12 | 13 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/Emails/html/thin.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |This email was sent using the CakePHP Framework
12 | 13 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/Emails/text/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | fetch('content'); ?> 3 | 4 | This email was sent using the CakePHP Framework, http://cakephp.org. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/Emails/text/japanese.ctp: -------------------------------------------------------------------------------- 1 | 2 | fetch('content'); ?> 3 | 4 | CakePHP Framework を使って送信したメールです。 http://cakephp.org. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/ajax.ctp: -------------------------------------------------------------------------------- 1 | fetch('content'); ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/ajax2.ctp: -------------------------------------------------------------------------------- 1 | Ajax! 2 | fetch('content'); ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/banana.ctp: -------------------------------------------------------------------------------- 1 | 2 | Banana->peel(); 4 | ?> 5 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/cache_empty_sections.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |This is regular text
2 | 3 | 4 | 5 | 6 | fetch('content'); ?> 7 | 8 | 9 | 10 | 11 | 12 | 13 |Additional regular text.
-------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/flash.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |This is regular text
2 | 3 |A. Layout Before Content
4 | log('1. layout before content') ?> 5 | 6 | element('nocache/plain'); ?> 7 | 8 |C. Layout After Test Element But Before Content
9 | log('3. layout after test element but before content') ?> 10 | 11 | fetch('content'); ?> 12 | 13 |E. Layout After Content
14 | log('5. layout after content') ?> 15 | 16 |Additional regular text.
17 | element('nocache/contains_nocache'); ?> 18 | 19 |G. Layout After Content And After Element With No Cache Tags
20 | log('7. layout after content and after element with no cache tags') ?> 21 | 22 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/rss/default.ctp: -------------------------------------------------------------------------------- 1 | Rss->header(); 3 | 4 | if (!isset($channel)) { 5 | $channel = array(); 6 | } 7 | if (!isset($channel['title'])) { 8 | $channel['title'] = $title_for_layout; 9 | } 10 | 11 | echo $this->Rss->document( 12 | $this->Rss->channel( 13 | array(), $channel, $this->fetch('content') 14 | ) 15 | ); 16 | 17 | ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/xml/default.ctp: -------------------------------------------------------------------------------- 1 | '; ?> 2 | fetch('content'); ?> 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Pages/page.home.ctp: -------------------------------------------------------------------------------- 1 | Empty page with a dot in the filename. 2 | Used to test plugin.view and missing plugins. 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/alt_ext.alt: -------------------------------------------------------------------------------- 1 | alt ext -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/cache_empty_sections.ctp: -------------------------------------------------------------------------------- 1 | View Content 2 | 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/cache_form.ctp: -------------------------------------------------------------------------------- 1 |D. In View File
4 | log('4. in view file') ?> 5 | 6 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/xml/index.ctp: -------------------------------------------------------------------------------- 1 | array('user' => array())); 3 | foreach ($users as $user) { 4 | $data['users']['user'][] = array('@' => $user['User']['username']); 5 | } 6 | echo Xml::fromArray($data)->saveXml(); 7 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Scaffolds/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/View/Scaffolds/empty -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/TestsApps/index.ctp: -------------------------------------------------------------------------------- 1 | This is the TestsAppsController index view 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/TestsApps/json/index.ctp: -------------------------------------------------------------------------------- 1 | {"cakephp":"cool"} -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Elements/test_element.ctp: -------------------------------------------------------------------------------- 1 | Hi, I'm the test element. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Emails/text/themed.ctp: -------------------------------------------------------------------------------- 1 | In TestTheme 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Layouts/default.ctp: -------------------------------------------------------------------------------- 1 | default test_theme layout 2 | fetch('content') ?> 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Plugin/TestPlugin/Emails/text/test_plugin_tpl.ctp: -------------------------------------------------------------------------------- 1 | Into TestPlugin. (themed) 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Plugin/TestPlugin/Layouts/plugin_default.ctp: -------------------------------------------------------------------------------- 1 | test_plugin test_plugin_theme default layout -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Plugin/TestPlugin/Tests/index.ctp: -------------------------------------------------------------------------------- 1 | test plugin index theme view -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Posts/index.ctp: -------------------------------------------------------------------------------- 1 | posts index themed view -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Posts/scaffold.index.ctp: -------------------------------------------------------------------------------- 1 | I'm a themed scaffold file. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Posts/themed.ctp: -------------------------------------------------------------------------------- 1 | posts themed themed file. 2 | 3 | element('test_element'); ?> 4 | 5 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/css/test_asset.css: -------------------------------------------------------------------------------- 1 | /* this is the test asset css file */ 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/css/theme_webroot.css: -------------------------------------------------------------------------------- 1 | /* theme webroot css file */ 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/flash/theme_test.swf: -------------------------------------------------------------------------------- 1 | this is just a test to load swf file from the theme. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/img/cake.power.gif -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/img/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/img/test.jpg -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/js/one/theme_one.js: -------------------------------------------------------------------------------- 1 | // nested theme js file -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/js/theme.js: -------------------------------------------------------------------------------- 1 | // root theme js file -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/pdfs/theme_test.pdf: -------------------------------------------------------------------------------- 1 | this is just a test to load pdf file from the theme. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/space image.text: -------------------------------------------------------------------------------- 1 | This is not an image. 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/tmp/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/tmp/empty -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/webroot/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/webroot/img/cake.power.gif -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/webroot/theme/test_theme/css/theme_webroot.css: -------------------------------------------------------------------------------- 1 | /* override the theme webroot css file */ 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/webroot/theme/test_theme/css/webroot_test.css: -------------------------------------------------------------------------------- 1 | /* this is the webroot test asset css file */ 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/webroot/theme/test_theme/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/webroot/theme/test_theme/img/cake.power.gif -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/webroot/theme/test_theme/img/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/webroot/theme/test_theme/img/test.jpg -------------------------------------------------------------------------------- /plugins/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/plugins/empty -------------------------------------------------------------------------------- /vendors/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/vendors/empty --------------------------------------------------------------------------------