Skip to content

Commit 9a06e86

Browse files
author
Codeliner
committed
Merge branch 'WriteIntroductionFeature' into BookingAppIntroductionStory
2 parents 56df16d + cf75662 commit 9a06e86

File tree

2 files changed

+8
-35
lines changed

2 files changed

+8
-35
lines changed
Lines changed: 7 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,17 @@
11
<div class="jumbotron">
2-
<h1><?php echo sprintf($this->translate('Welcome to %sZend Framework 2%s'), '<span class="zf-green">', '</span>') ?></h1>
3-
<p><?php echo sprintf($this->translate('Congratulations! You have successfully installed the %sZF2 Skeleton Application%s. You are currently running Zend Framework version %s. This skeleton can serve as a simple starting point for you to begin building your application on ZF2.'), '<a href="https://github.com/zendframework/ZendSkeletonApplication" target="_blank">', '</a>', \Zend\Version\Version::VERSION) ?></p>
4-
<p><a class="btn btn-success btn-lg" href="https://github.com/zendframework/zf2" target="_blank"><?php echo $this->translate('Fork Zend Framework 2 on GitHub') ?> &raquo;</a></p>
2+
<h1><?php echo $this->translate('Welcome to the PHP DDD Cargo Sample') ?></h1>
3+
<p><?php echo $this->translate('Congratulations! You have successfully installed the Container Shipping System. You are currently running the Chaper One Version of the Application.') ?></p>
4+
<p><a class="btn btn-success btn-lg" href="https://github.com/codeliner/php-ddd-cargo-sample" target="_blank"><?php echo $this->translate('Fork PHP DDD Cargo Sample on GitHub') ?> &raquo;</a></p>
55
</div>
6-
76
<div class="row">
8-
9-
<div class="col-md-4">
7+
<div class="col-md-12">
108
<div class="panel panel-default">
119
<div class="panel-heading">
12-
<h3 class="panel-title"><?php echo $this->translate('Follow Development') ?></h3>
10+
<h3 class="panel-title"><?php echo $this->translate('Goal of the Sample Application') ?></h3>
1311
</div>
1412
<div class="panel-body">
15-
<p><?php echo sprintf($this->translate('Zend Framework 2 is under active development. If you are interested in following the development of ZF2, there is a special ZF2 portal on the official Zend Framework website which provides links to the ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s, and much more. This is a great resource for staying up to date with the latest developments!'), '<a href="http://framework.zend.com/wiki/display/ZFDEV2/Home">', '</a>', '<a href="http://framework.zend.com/zf2/blog">', '</a>', '<a href="https://github.com/zendframework/zf2/issues">', '</a>') ?></p>
16-
<p><a class="btn btn-success pull-right" href="http://framework.zend.com/zf2" target="_blank"><?php echo $this->translate('ZF2 Development Portal') ?> &raquo;</a></p>
13+
<p><?php echo sprintf($this->translate('The Cargo Shipping System is based on the example used in Eric Evans book Domain Driven Design: Tackling Complexity in the Heart of Software. It\'s a PHP Version of the Cargo Sample to show how DDD can be applied in a PHP Project. %sZend Framework 2%s is used as a basis for the application layer and %sdoctrine 2%s is used for the infrastructure layer.'), '<a href="http://framework.zend.com/" target="_blank">', '</a>', '<a href="http://www.doctrine-project.org/" target="_blank">', '</a>') ?></p>
1714
</div>
1815
</div>
1916
</div>
20-
21-
<div class="col-md-4">
22-
<div class="panel panel-default">
23-
<div class="panel-heading">
24-
<h3 class="panel-title"><?php echo $this->translate('Discover Modules') ?></h3>
25-
</div>
26-
<div class="panel-body">
27-
<p><?php echo sprintf($this->translate('The community is working on developing a community site to serve as a repository and gallery for ZF2 modules. The project is available %son GitHub%s. The site is currently live and currently contains a list of some of the modules already available for ZF2.'), '<a href="https://github.com/zendframework/modules.zendframework.com">', '</a>') ?></p>
28-
<p><a class="btn btn-success pull-right" href="http://modules.zendframework.com/" target="_blank"><?php echo $this->translate('Explore ZF2 Modules') ?> &raquo;</a></p>
29-
</div>
30-
</div>
31-
</div>
32-
33-
<div class="col-md-4">
34-
<div class="panel panel-default">
35-
<div class="panel-heading">
36-
<h3 class="panel-title"><?php echo $this->translate('Help &amp; Support') ?></h3>
37-
</div>
38-
<div class="panel-body">
39-
<p><?php echo sprintf($this->translate('If you need any help or support while developing with ZF2, you may reach us via IRC: %s#zftalk on Freenode%s. We\'d love to hear any questions or feedback you may have regarding the beta releases. Alternatively, you may subscribe and post questions to the %smailing lists%s.'), '<a href="irc://irc.freenode.net/zftalk">', '</a>', '<a href="http://framework.zend.com/wiki/display/ZFDEV/Mailing+Lists">', '</a>') ?></p>
40-
<p><a class="btn btn-success pull-right" href="http://webchat.freenode.net?channels=zftalk" target="_blank"><?php echo $this->translate('Ping us on IRC') ?> &raquo;</a></p>
41-
</div>
42-
</div>
43-
</div>
44-
</div>
17+
</div>

module/Application/view/layout/layout.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<?php echo $this->content; ?>
4848
<hr>
4949
<footer>
50-
<p>&copy; 2005 - <?php echo date('Y') ?> by Zend Technologies Ltd. <?php echo $this->translate('All rights reserved.') ?></p>
50+
<p>&copy; 2013<?php echo (date('Y') > 2013)? ' - ' . date('Y') : ''; ?> by Alexander Miertsch. <?php echo $this->translate('All rights reserved.') ?></p>
5151
</footer>
5252
</div> <!-- /container -->
5353
<?php echo $this->inlineScript() ?>

0 commit comments

Comments
 (0)