├── doc
├── CHANGELOG.md
├── view-strategies
│ ├── README.md
│ ├── exception-view-strategy.md
│ ├── layout-view-strategy.md
│ └── scheme-view-strategy.md
├── README.md
└── CONTRIBUTING.md
├── .ruby-version
├── test
├── casperjs
│ ├── config
│ │ └── example.js
│ ├── inc
│ │ └── init.js
│ └── tests
│ │ ├── view-home-page.js
│ │ └── view-404-page.js
├── README.md
└── phpunit
│ ├── phpunit.xml.dist
│ ├── TestConfig.php.dist
│ ├── ApplicationTest
│ └── Controller
│ │ └── IndexControllerTest.php
│ └── Bootstrap.php
├── module
└── Cornerstone
│ ├── language
│ ├── Cornerstone_en.mo
│ └── Cornerstone_en.po
│ ├── view
│ ├── console
│ │ └── application
│ │ │ ├── partials
│ │ │ ├── rewrite-pre-rules.phtml
│ │ │ ├── rewrite-post-rules.phtml
│ │ │ └── modsec-rules.phtml
│ │ │ └── vhost.tpl
│ ├── layout
│ │ ├── partials
│ │ │ ├── page
│ │ │ │ ├── footer.phtml
│ │ │ │ ├── header.phtml
│ │ │ │ └── content.phtml
│ │ │ └── site
│ │ │ │ ├── footer.phtml
│ │ │ │ ├── header.phtml
│ │ │ │ └── navigation.phtml
│ │ ├── theme
│ │ │ └── default.phtml
│ │ └── layout.phtml
│ ├── application
│ │ └── index
│ │ │ └── index.phtml
│ └── error
│ │ ├── index.phtml
│ │ └── 404.phtml
│ ├── src
│ ├── Http
│ │ ├── Controller
│ │ │ ├── ExceptionController.php
│ │ │ ├── IndexController.php
│ │ │ └── NotFoundController.php
│ │ ├── ViewHelper
│ │ │ └── ChangeLocale.php
│ │ └── Listener
│ │ │ ├── ExceptionLogger.php
│ │ │ ├── Layout.php
│ │ │ ├── Scheme.php
│ │ │ ├── Theme.php
│ │ │ └── Localization.php
│ ├── EventManager
│ │ ├── Service.php
│ │ └── Console
│ │ │ └── Event.php
│ └── Console
│ │ ├── Listener
│ │ ├── InitializeApplication.php
│ │ ├── ApplicationCacheInit.php
│ │ ├── ApplicationCacheEmpty.php
│ │ └── BuildVirtualHost.php
│ │ └── Controller
│ │ └── ApplicationController.php
│ ├── Module.php
│ └── config
│ └── module.config.php
├── .gitignore
├── config
├── autoload
│ ├── vagrant.json
│ ├── example_environment.json.dist
│ ├── README.md
│ └── global.php.dist
└── application.config.php
├── metadata.rb
├── recipes
└── default.rb
├── Gemfile
├── .editorconfig
├── Berksfile
├── public
└── index.php
├── cornerstone.php
├── composer.json
├── Vagrantfile
├── README.md
├── Berksfile.lock
├── LICENSE
└── composer.lock
/doc/CHANGELOG.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.ruby-version:
--------------------------------------------------------------------------------
1 | 2.0.0-p481
--------------------------------------------------------------------------------
/test/casperjs/config/example.js:
--------------------------------------------------------------------------------
1 | var baseUrl = 'http://cornerstone.example.com/';
2 |
--------------------------------------------------------------------------------
/doc/view-strategies/README.md:
--------------------------------------------------------------------------------
1 | # View Strategies
2 | I need to add some navigation / menu items pointing to the various view strategy docs...
--------------------------------------------------------------------------------
/module/Cornerstone/language/Cornerstone_en.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DivideAndConquer/Cornerstone/master/module/Cornerstone/language/Cornerstone_en.mo
--------------------------------------------------------------------------------
/test/README.md:
--------------------------------------------------------------------------------
1 | Unit Testing
2 | ===========================
3 |
4 | I have added two example sections for building CasperJS tests and PHPUnit Tests. Feel free to use them or do your own thing.
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .buildpath
2 | .idea
3 | .project
4 | .vagrant
5 | .settings
6 | /config/autoload/*.php
7 | /config/autoload/*.json
8 | /cookbooks
9 | /data/cache
10 | /data/vhost
11 | /vendor
12 |
--------------------------------------------------------------------------------
/module/Cornerstone/view/console/application/partials/rewrite-pre-rules.phtml:
--------------------------------------------------------------------------------
1 |
6 |
A ZF2 Application Blueprint for building new PHP web apps using Cornerstone
18 |If you're seeing this, you've either installed Cornerstone or created a new project using our Application Blueprint, Welcome! You've managed to get through installation, now it's time to get down to the fun part, building stuff.
29 |A handful of us have decided to create our own GitHub organization and place a collection of our various code projects into it, thus https://github.com/web-masons/ was born.
30 |If you need assistance, please file an Issue to the project and we'll get back to you as soon as we can. If you're not sure which project to file it under, just file it under the Cornerstone project.
31 |exception->getFile() ?>:exception->getLine() ?>28 |
exception->getMessage() ?>32 |
exception->getTraceAsString() ?>36 |
getFile() ?>:getLine() ?>53 |
getMessage() ?>57 |
getTraceAsString() ?>61 |
exception->getFile() ?>:exception->getLine() ?>73 |
exception->getMessage() ?>77 |
exception->getTraceAsString() ?>81 |
getFile() ?>:getLine() ?>98 |
getMessage() ?>102 |
getTraceAsString() ?>106 |