This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Jg_Mapper_Collection implements Iterator, Countable, Zend_Paginator_Adapter_Interface { | |
protected $_mapper; | |
protected $_total; | |
protected $_raw = array(); | |
protected $_domain_object_class; | |
protected $_result; | |
protected $_pointer = 0; | |
protected $_objects = array(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project name="example_app" default="build" xmlns:ivy="antlib:org.apache.ivy.ant" xmlns:ac="antlib:net.sf.antcontrib"> | |
<property file="${basedir}/build.properties"/> | |
<property file="${basedir}/build.local.properties"/> | |
<path id="antcontrib.path"> | |
<fileset dir="${antcontrib.dir}"/> | |
</path> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ivysettings> | |
<properties environment="env"/> | |
<property name="ivy.subpattern" value="[organisation]/[module]/ivy-[revision].xml"/> | |
<property name="artifact.subpattern" value="[organisation]/[module]/[artifact]-[revision].[ext]"/> | |
<settings defaultResolver="url"/> | |
<resolvers> | |
<url name="url"> | |
<ivy pattern="${repo.url}/${ivy.subpattern}" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<ivy-module version="2.0" | |
xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<publications> | |
<artifact type="tgz"/> | |
</publications> | |
<info organisation="Zend" module="ZendFramework" revision="1.11.11"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<ivy-module version="2.0" | |
xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<info organisation="example_org" module="example_app"/> | |
<dependencies> | |
<dependency org="jQuery" name="jQuery" rev="1.7.1"/> | |
<dependency org="Zend" name="ZendFramework" rev="1.11.11"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Album\Entity; | |
use Doctrine\ORM\Mapping as ORM; | |
/** | |
* A music album. | |
* | |
* @ORM\Entity |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Album\Controller; | |
use Zend\Mvc\Controller\ActionController, | |
Zend\View\Model\ViewModel, | |
Album\Model\AlbumTable, | |
Album\Model\Album, | |
Album\Form\AlbumForm; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Album\Controller; | |
use Zend\Mvc\Controller\ActionController, | |
Zend\View\Model\ViewModel, | |
Album\Form\AlbumForm, | |
Doctrine\ORM\EntityManager, | |
Album\Entity\Album; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Album; | |
use PDO; | |
return array( | |
'di' => array( | |
'instance' => array( | |
'alias' => array( | |
'album' => 'Album\Controller\AlbumController', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Album\Entity; | |
use Doctrine\ORM\Mapping as ORM; | |
use Zend\InputFilter\InputFilter; | |
use Zend\InputFilter\Factory as InputFactory; | |
use Zend\InputFilter\InputFilterAwareInterface; | |
use Zend\InputFilter\InputFilterInterface; |
OlderNewer