Skip to content

Instantly share code, notes, and snippets.

@rufinus
Created November 13, 2012 02:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rufinus/4063648 to your computer and use it in GitHub Desktop.
Save rufinus/4063648 to your computer and use it in GitHub Desktop.
Doctrine Hydration Fails if doctrine uses proxy
array
'agencyId' => int 4
'name' => string 'Testing' (length=7)
'address' => string '' (length=0)
'address2' => string '' (length=0)
'zipcode' => string '' (length=0)
'city' => string '' (length=0)
'country' => string 'AF' (length=2)
'phone' => string '' (length=0)
'fax' => string '' (length=0)
'url' => string '' (length=0)
'email' => string '' (length=0)
'uid' => string '' (length=0)
'mandator' =>
object(Admin\Entity\Mandator)[472] //<------------------- Mandator Object
protected 'mandatorId' => int 3 // <------ and our FK
protected 'name' => string 'FooBar' (length=6)
[striped]
array
'agencyId' => int 5
'name' => string 'Testing 2' (length=9)
'address' => string '' (length=0)
'address2' => string '' (length=0)
'zipcode' => string '' (length=0)
'city' => string '' (length=0)
'country' => string 'AF' (length=2)
'phone' => string '' (length=0)
'fax' => string '' (length=0)
'url' => string '' (length=0)
'email' => string '' (length=0)
'uid' => string '' (length=0)
'mandator' =>
object(DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator)[340] //<---- Proxy Mandator Object
private '_entityPersister' =>
object(Doctrine\ORM\Persisters\BasicEntityPersister)[341]
protected '_class' =>
object(Doctrine\ORM\Mapping\ClassMetadata)[330]
...
protected '_conn' =>
object(Doctrine\DBAL\Connection)[268]
...
protected '_platform' =>
object(Doctrine\DBAL\Platforms\MySqlPlatform)[270]
...
protected '_em' =>
object(Doctrine\ORM\EntityManager)[294]
...
protected '_queuedInserts' =>
array
...
protected '_rsm' =>
object(Doctrine\ORM\Query\ResultSetMapping)[467]
...
protected '_columnTypes' =>
array
...
protected 'quotedColumns' =>
array
...
private '_insertSql' => null
protected '_selectColumnListSql' => string 't0.mandator_id AS mandator_id1, t0.name AS name2' (length=48)
protected '_selectJoinSql' => string '' (length=0)
protected '_sqlAliasCounter' => int 3
protected '_sqlTableAliases' =>
array
...
protected 'quoteStrategy' =>
object(Doctrine\ORM\Mapping\DefaultQuoteStrategy)[314]
...
private '_identifier' =>
array
'mandatorId' => string '1' (length=1) //<-- but the proxy seems to use this one, which is of wrong type
public '__isInitialized__' => boolean true
protected 'mandatorId' => int 1 //<--- here it is, but cant be found
protected 'name' => string 'Österreich Print' (length=17)
[striped]
Notice: Object of class Doctrine\ORM\Persisters\BasicEntityPersister could not be converted to int in /srv/www/workspace/platypus/PrintExchange/vendor/zendframework/zendframework/library/Zend/Form/View/Helper/FormSelect.php on line 163
<select name="mandator" id="mandator" class="select full-width ">
<option value="1" selected="selected">Österreich Print</option>
<option value="2" selected="selected">Test Instance</option>
<option value="3" selected="selected">FooBar</option>
</select>
<?php
namespace Admin\Entity;
use Zend\InputFilter\InputFilter;
/**
* Admin\Entity\Agency
*
* @ORM\Table(name="agency")
* @ORM\Entity
*/
class Agency extends \cwdCommon\Doctrine\Entity
{
/**
* Input Filter
* @var InputFilter
*/
protected $inputFilter;
/**
* @var integer $agencyId
*
* @ORM\Column(name="agency_id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $agencyId;
/**
* @var string $name
*
* @ORM\Column(name="name", type="string", length=200, nullable=false)
*/
private $name;
/**
* @var string $address
*
* @ORM\Column(name="address", type="string", length=200, nullable=true)
*/
private $address;
/**
* @var string $address2
*
* @ORM\Column(name="address2", type="string", length=200, nullable=true)
*/
private $address2;
/**
* @var string $zipcode
*
* @ORM\Column(name="zipcode", type="string", length=7, nullable=true)
*/
private $zipcode;
/**
* @var string $city
*
* @ORM\Column(name="city", type="string", length=150, nullable=true)
*/
private $city;
/**
* @var string $country
*
* @ORM\Column(name="country", type="string", length=150, nullable=true)
*/
private $country;
/**
* @var string $phone
*
* @ORM\Column(name="phone", type="string", length=20, nullable=true)
*/
private $phone;
/**
* @var string $fax
*
* @ORM\Column(name="fax", type="string", length=20, nullable=true)
*/
private $fax;
/**
* @var string $url
*
* @ORM\Column(name="url", type="string", length=150, nullable=true)
*/
private $url;
/**
* @var string $email
*
* @ORM\Column(name="email", type="string", length=150, nullable=true)
*/
private $email;
/**
* @var string $uid
*
* @ORM\Column(name="uid", type="string", length=30, nullable=true)
*/
private $uid;
/**
* @var Admin\Entity\Mandator
*
* @ORM\ManyToOne(targetEntity="Admin\Entity\Mandator")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="mandator_id", referencedColumnName="mandator_id")
* })
*/
private $mandator;
/**
* Get agencyId
*
* @return integer
*/
public function getAgencyId()
{
return $this->agencyId;
}
/**
* Set name
*
* @param string $name
* @return Agency
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
* Get name
*
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Set address
*
* @param string $address
* @return Agency
*/
public function setAddress($address)
{
$this->address = $address;
return $this;
}
/**
* Get address
*
* @return string
*/
public function getAddress()
{
return $this->address;
}
/**
* Set address2
*
* @param string $address2
* @return Agency
*/
public function setAddress2($address2)
{
$this->address2 = $address2;
return $this;
}
/**
* Get address2
*
* @return string
*/
public function getAddress2()
{
return $this->address2;
}
/**
* Set zipcode
*
* @param string $zipcode
* @return Agency
*/
public function setZipcode($zipcode)
{
$this->zipcode = $zipcode;
return $this;
}
/**
* Get zipcode
*
* @return string
*/
public function getZipcode()
{
return $this->zipcode;
}
/**
* Set city
*
* @param string $city
* @return Agency
*/
public function setCity($city)
{
$this->city = $city;
return $this;
}
/**
* Get city
*
* @return string
*/
public function getCity()
{
return $this->city;
}
/**
* Set country
*
* @param string $country
* @return Agency
*/
public function setCountry($country)
{
$this->country = $country;
return $this;
}
/**
* Get country
*
* @return string
*/
public function getCountry()
{
return $this->country;
}
/**
* Set phone
*
* @param string $phone
* @return Agency
*/
public function setPhone($phone)
{
$this->phone = $phone;
return $this;
}
/**
* Get phone
*
* @return string
*/
public function getPhone()
{
return $this->phone;
}
/**
* Set fax
*
* @param string $fax
* @return Agency
*/
public function setFax($fax)
{
$this->fax = $fax;
return $this;
}
/**
* Get fax
*
* @return string
*/
public function getFax()
{
return $this->fax;
}
/**
* Set url
*
* @param string $url
* @return Agency
*/
public function setUrl($url)
{
$this->url = $url;
return $this;
}
/**
* Get url
*
* @return string
*/
public function getUrl()
{
return $this->url;
}
/**
* Set email
*
* @param string $email
* @return Agency
*/
public function setEmail($email)
{
$this->email = $email;
return $this;
}
/**
* Get email
*
* @return string
*/
public function getEmail()
{
return $this->email;
}
/**
* Set uid
*
* @param string $uid
* @return Agency
*/
public function setUid($uid)
{
$this->uid = $uid;
return $this;
}
/**
* Get uid
*
* @return string
*/
public function getUid()
{
return $this->uid;
}
/**
* Set mandator
*
* @param Admin\Entity\Mandator $mandator
* @return Agency
*/
public function setMandator(\Admin\Entity\Mandator $mandator = null)
{
$this->mandator = $mandator;
return $this;
}
/**
* Get mandator
*
* @return Admin\Entity\Mandator
*/
public function getMandator()
{
return $this->mandator;
}
/**
* Set Input Filter
* @param InputFilterInterface $inputFilter
*/
public function setInputFilter(InputFilterInterface $inputFilter)
{
throw new \Exception("Not used");
}
public function getInputFilter()
{
//[striped]
}
}
<?php
namespace Admin\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Admin\Entity\Mandator
*
* @ORM\Table(name="mandator")
* @ORM\Entity
*/
class Mandator extends \cwdCommon\Doctrine\Entity
{
/**
* @var integer $mandatorId
*
* @ORM\Column(name="mandator_id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
protected $mandatorId;
/**
* @var string $name
*
* @ORM\Column(name="name", type="string", length=150, nullable=false)
*/
protected $name;
/**
* Get mandatorId
*
* @return integer
*/
public function getMandatorId()
{
return $this->mandatorId;
}
/**
* Set name
*
* @param string $name
* @return Mandator
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
* Get name
*
* @return string
*/
public function getName()
{
return $this->name;
}
}
?php
namespace DoctrineORMModule\Proxy\__CG__\Admin\Entity;
/**
* THIS CLASS WAS GENERATED BY THE DOCTRINE ORM. DO NOT EDIT THIS FILE.
*/
class Mandator extends \Admin\Entity\Mandator implements \Doctrine\ORM\Proxy\Proxy
{
private $_entityPersister;
private $_identifier;
public $__isInitialized__ = false;
public function __construct($entityPersister, $identifier)
{
$this->_entityPersister = $entityPersister;
$this->_identifier = $identifier;
}
/** @private */
public function __load()
{
if (!$this->__isInitialized__ && $this->_entityPersister) {
$this->__isInitialized__ = true;
if (method_exists($this, "__wakeup")) {
// call this after __isInitialized__to avoid infinite recursion
// but before loading to emulate what ClassMetadata::newInstance()
// provides.
$this->__wakeup();
}
if ($this->_entityPersister->load($this->_identifier, $this) === null) {
throw new \Doctrine\ORM\EntityNotFoundException();
}
unset($this->_entityPersister, $this->_identifier);
}
}
/** @private */
public function __isInitialized()
{
return $this->__isInitialized__;
}
public function getMandatorId()
{
if ($this->__isInitialized__ === false) {
return (int) $this->_identifier["mandatorId"];
}
$this->__load();
return parent::getMandatorId();
}
[..striped..]
Notice: Object of class Doctrine\ORM\Persisters\BasicEntityPersister could not be converted to int in /srv/www/workspace/platypus/PrintExchange/vendor/zendframework/zendframework/library/Zend/Form/View/Helper/FormSelect.php on line 163
Call Stack
# Time Memory Function Location
1 0.0000 637336 {main}( ) ../index.php:0
2 0.0538 6205608 Zend\Mvc\Application->run( ) ../index.php:15
3 0.0713 8116200 Zend\Mvc\Application->completeRequest( class Zend\Mvc\MvcEvent { protected $application = class Zend\Mvc\Application { protected $configuration = array (...); protected $event = ...; protected $events = class Zend\EventManager\EventManager { ... }; protected $request = class Zend\Http\PhpEnvironment\Request { ... }; protected $response = class Zend\Http\PhpEnvironment\Response { ... }; protected $serviceManager = class Zend\ServiceManager\ServiceManager { ... } }; protected $request = class Zend\Http\PhpEnvironment\Request { protected $baseUrl = ''; protected $basePath = NULL; protected $requestUri = '/agency/edit/4'; protected $serverParams = class Zend\Stdlib\Parameters { ... }; protected $envParams = class Zend\Stdlib\Parameters { ... }; protected $method = 'GET'; protected $uri = class Zend\Uri\Http { ... }; protected $queryParams = NULL; protected $postParams = NULL; protected $fileParams = NULL; protected $version = '1.1'; protected $headers = class Zend\Http\Headers { ... }; protected $metadata = array (...); protected $content = '' }; protected $response = class Zend\Http\PhpEnvironment\Response { protected $version = NULL; protected $headersSent = FALSE; protected $contentSent = FALSE; protected $recommendedReasonPhrases = array (...); protected $statusCode = 200; protected $reasonPhrase = NULL; protected $headers = NULL; protected $metadata = array (...); protected $content = '' }; protected $result = class Zend\View\Model\ViewModel { protected $captureTo = 'content'; protected $children = array (...); protected $options = array (...); protected $template = 'admin/agency/create.phtml'; protected $terminate = FALSE; protected $variables = array (...); protected $append = FALSE }; protected $router = class Zend\Mvc\Router\Http\TreeRouteStack { protected $baseUrl = ''; protected $requestUri = class Zend\Uri\Http { ... }; protected $routes = class Zend\Mvc\Router\PriorityList { ... }; protected $routePluginManager = class Zend\Mvc\Router\RoutePluginManager { ... }; protected $defaultParams = array (...) }; protected $routeMatch = class Zend\Mvc\Router\Http\RouteMatch { protected $length = 14; protected $params = array (...); protected $matchedRouteName = 'admin' }; protected $viewModel = class Zend\View\Model\ViewModel { protected $captureTo = 'content'; protected $children = array (...); protected $options = array (...); protected $template = 'theme'; protected $terminate = FALSE; protected $variables = class Zend\View\Variables { ... }; protected $append = FALSE }; protected $name = 'render'; protected $target = class Zend\Mvc\Application { protected $configuration = array (...); protected $event = ...; protected $events = class Zend\EventManager\EventManager { ... }; protected $request = class Zend\Http\PhpEnvironment\Request { ... }; protected $response = class Zend\Http\PhpEnvironment\Response { ... }; protected $serviceManager = class Zend\ServiceManager\ServiceManager { ... } }; protected $params = array ('application' => class Zend\Mvc\Application { ... }, 'request' => class Zend\Http\PhpEnvironment\Request { ... }, 'response' => class Zend\Http\PhpEnvironment\Response { ... }, 'router' => class Zend\Mvc\Router\Http\TreeRouteStack { ... }, 'route-match' => class Zend\Mvc\Router\Http\RouteMatch { ... }, '__RESULT__' => class Zend\View\Model\ViewModel { ... }); protected $stopPropagation = FALSE } ) ../Application.php:310
4 0.0713 8116336 Zend\EventManager\EventManager->trigger( 'render', class Zend\Mvc\MvcEvent { protected $application = class Zend\Mvc\Application { protected $configuration = array (...); protected $event = ...; protected $events = class Zend\EventManager\EventManager { ... }; protected $request = class Zend\Http\PhpEnvironment\Request { ... }; protected $response = class Zend\Http\PhpEnvironment\Response { ... }; protected $serviceManager = class Zend\ServiceManager\ServiceManager { ... } }; protected $request = class Zend\Http\PhpEnvironment\Request { protected $baseUrl = ''; protected $basePath = NULL; protected $requestUri = '/agency/edit/4'; protected $serverParams = class Zend\Stdlib\Parameters { ... }; protected $envParams = class Zend\Stdlib\Parameters { ... }; protected $method = 'GET'; protected $uri = class Zend\Uri\Http { ... }; protected $queryParams = NULL; protected $postParams = NULL; protected $fileParams = NULL; protected $version = '1.1'; protected $headers = class Zend\Http\Headers { ... }; protected $metadata = array (...); protected $content = '' }; protected $response = class Zend\Http\PhpEnvironment\Response { protected $version = NULL; protected $headersSent = FALSE; protected $contentSent = FALSE; protected $recommendedReasonPhrases = array (...); protected $statusCode = 200; protected $reasonPhrase = NULL; protected $headers = NULL; protected $metadata = array (...); protected $content = '' }; protected $result = class Zend\View\Model\ViewModel { protected $captureTo = 'content'; protected $children = array (...); protected $options = array (...); protected $template = 'admin/agency/create.phtml'; protected $terminate = FALSE; protected $variables = array (...); protected $append = FALSE }; protected $router = class Zend\Mvc\Router\Http\TreeRouteStack { protected $baseUrl = ''; protected $requestUri = class Zend\Uri\Http { ... }; protected $routes = class Zend\Mvc\Router\PriorityList { ... }; protected $routePluginManager = class Zend\Mvc\Router\RoutePluginManager { ... }; protected $defaultParams = array (...) }; protected $routeMatch = class Zend\Mvc\Router\Http\RouteMatch { protected $length = 14; protected $params = array (...); protected $matchedRouteName = 'admin' }; protected $viewModel = class Zend\View\Model\ViewModel { protected $captureTo = 'content'; protected $children = array (...); protected $options = array (...); protected $template = 'theme'; protected $terminate = FALSE; protected $variables = class Zend\View\Variables { ... }; protected $append = FALSE }; protected $name = 'render'; protected $target = class Zend\Mvc\Application { protected $configuration = array (...); protected $event = ...; protected $events = class Zend\EventManager\EventManager { ... }; protected $request = class Zend\Http\PhpEnvironment\Request { ... }; protected $response = class Zend\Http\PhpEnvironment\Response { ... }; protected $serviceManager = class Zend\ServiceManager\ServiceManager { ... } }; protected $params = array ('application' => class Zend\Mvc\Application { ... }, 'request' => class Zend\Http\PhpEnvironment\Request { ... }, 'response' => class Zend\Http\PhpEnvironment\Response { ... }, 'router' => class Zend\Mvc\Router\Http\TreeRouteStack { ... }, 'route-match' => class Zend\Mvc\Router\Http\RouteMatch { ... }, '__RESULT__' => class Zend\View\Model\ViewModel { ... }); protected $stopPropagation = FALSE }, ???, ??? ) ../Application.php:326
5 0.0713 8116640 Zend\EventManager\EventManager->triggerListeners( 'render', class Zend\Mvc\MvcEvent { protected $application = class Zend\Mvc\Application { protected $configuration = array (...); protected $event = ...; protected $events = class Zend\EventManager\EventManager { ... }; protected $request = class Zend\Http\PhpEnvironment\Request { ... }; protected $response = class Zend\Http\PhpEnvironment\Response { ... }; protected $serviceManager = class Zend\ServiceManager\ServiceManager { ... } }; protected $request = class Zend\Http\PhpEnvironment\Request { protected $baseUrl = ''; protected $basePath = NULL; protected $requestUri = '/agency/edit/4'; protected $serverParams = class Zend\Stdlib\Parameters { ... }; protected $envParams = class Zend\Stdlib\Parameters { ... }; protected $method = 'GET'; protected $uri = class Zend\Uri\Http { ... }; protected $queryParams = NULL; protected $postParams = NULL; protected $fileParams = NULL; protected $version = '1.1'; protected $headers = class Zend\Http\Headers { ... }; protected $metadata = array (...); protected $content = '' }; protected $response = class Zend\Http\PhpEnvironment\Response { protected $version = NULL; protected $headersSent = FALSE; protected $contentSent = FALSE; protected $recommendedReasonPhrases = array (...); protected $statusCode = 200; protected $reasonPhrase = NULL; protected $headers = NULL; protected $metadata = array (...); protected $content = '' }; protected $result = class Zend\View\Model\ViewModel { protected $captureTo = 'content'; protected $children = array (...); protected $options = array (...); protected $template = 'admin/agency/create.phtml'; protected $terminate = FALSE; protected $variables = array (...); protected $append = FALSE }; protected $router = class Zend\Mvc\Router\Http\TreeRouteStack { protected $baseUrl = ''; protected $requestUri = class Zend\Uri\Http { ... }; protected $routes = class Zend\Mvc\Router\PriorityList { ... }; protected $routePluginManager = class Zend\Mvc\Router\RoutePluginManager { ... }; protected $defaultParams = array (...) }; protected $routeMatch = class Zend\Mvc\Router\Http\RouteMatch { protected $length = 14; protected $params = array (...); protected $matchedRouteName = 'admin' }; protected $viewModel = class Zend\View\Model\ViewModel { protected $captureTo = 'content'; protected $children = array (...); protected $options = array (...); protected $template = 'theme'; protected $terminate = FALSE; protected $variables = class Zend\View\Variables { ... }; protected $append = FALSE }; protected $name = 'render'; protected $target = class Zend\Mvc\Application { protected $configuration = array (...); protected $event = ...; protected $events = class Zend\EventManager\EventManager { ... }; protected $request = class Zend\Http\PhpEnvironment\Request { ... }; protected $response = class Zend\Http\PhpEnvironment\Response { ... }; protected $serviceManager = class Zend\ServiceManager\ServiceManager { ... } }; protected $params = array ('application' => class Zend\Mvc\Application { ... }, 'request' => class Zend\Http\PhpEnvironment\Request { ... }, 'response' => class Zend\Http\PhpEnvironment\Response { ... }, 'router' => class Zend\Mvc\Router\Http\TreeRouteStack { ... }, 'route-match' => class Zend\Mvc\Router\Http\RouteMatch { ... }, '__RESULT__' => class Zend\View\Model\ViewModel { ... }); protected $stopPropagation = FALSE }, array () ) ../EventManager.php:208
6 0.0715 8120464 call_user_func ( array (0 => class Zend\Mvc\View\Http\DefaultRenderingStrategy { protected $listeners = array (...); protected $layoutTemplate = 'layout/layout'; protected $view = class Zend\View\View { ... } }, 1 => 'render'), class Zend\Mvc\MvcEvent { protected $application = class Zend\Mvc\Application { protected $configuration = array (...); protected $event = ...; protected $events = class Zend\EventManager\EventManager { ... }; protected $request = class Zend\Http\PhpEnvironment\Request { ... }; protected $response = class Zend\Http\PhpEnvironment\Response { ... }; protected $serviceManager = class Zend\ServiceManager\ServiceManager { ... } }; protected $request = class Zend\Http\PhpEnvironment\Request { protected $baseUrl = ''; protected $basePath = NULL; protected $requestUri = '/agency/edit/4'; protected $serverParams = class Zend\Stdlib\Parameters { ... }; protected $envParams = class Zend\Stdlib\Parameters { ... }; protected $method = 'GET'; protected $uri = class Zend\Uri\Http { ... }; protected $queryParams = NULL; protected $postParams = NULL; protected $fileParams = NULL; protected $version = '1.1'; protected $headers = class Zend\Http\Headers { ... }; protected $metadata = array (...); protected $content = '' }; protected $response = class Zend\Http\PhpEnvironment\Response { protected $version = NULL; protected $headersSent = FALSE; protected $contentSent = FALSE; protected $recommendedReasonPhrases = array (...); protected $statusCode = 200; protected $reasonPhrase = NULL; protected $headers = NULL; protected $metadata = array (...); protected $content = '' }; protected $result = class Zend\View\Model\ViewModel { protected $captureTo = 'content'; protected $children = array (...); protected $options = array (...); protected $template = 'admin/agency/create.phtml'; protected $terminate = FALSE; protected $variables = array (...); protected $append = FALSE }; protected $router = class Zend\Mvc\Router\Http\TreeRouteStack { protected $baseUrl = ''; protected $requestUri = class Zend\Uri\Http { ... }; protected $routes = class Zend\Mvc\Router\PriorityList { ... }; protected $routePluginManager = class Zend\Mvc\Router\RoutePluginManager { ... }; protected $defaultParams = array (...) }; protected $routeMatch = class Zend\Mvc\Router\Http\RouteMatch { protected $length = 14; protected $params = array (...); protected $matchedRouteName = 'admin' }; protected $viewModel = class Zend\View\Model\ViewModel { protected $captureTo = 'content'; protected $children = array (...); protected $options = array (...); protected $template = 'theme'; protected $terminate = FALSE; protected $variables = class Zend\View\Variables { ... }; protected $append = FALSE }; protected $name = 'render'; protected $target = class Zend\Mvc\Application { protected $configuration = array (...); protected $event = ...; protected $events = class Zend\EventManager\EventManager { ... }; protected $request = class Zend\Http\PhpEnvironment\Request { ... }; protected $response = class Zend\Http\PhpEnvironment\Response { ... }; protected $serviceManager = class Zend\ServiceManager\ServiceManager { ... } }; protected $params = array ('application' => class Zend\Mvc\Application { ... }, 'request' => class Zend\Http\PhpEnvironment\Request { ... }, 'response' => class Zend\Http\PhpEnvironment\Response { ... }, 'router' => class Zend\Mvc\Router\Http\TreeRouteStack { ... }, 'route-match' => class Zend\Mvc\Router\Http\RouteMatch { ... }, '__RESULT__' => class Zend\View\Model\ViewModel { ... }); protected $stopPropagation = FALSE } ) ../EventManager.php:468
7 0.0715 8120520 Zend\Mvc\View\Http\DefaultRenderingStrategy->render( class Zend\Mvc\MvcEvent { protected $application = class Zend\Mvc\Application { protected $configuration = array (...); protected $event = ...; protected $events = class Zend\EventManager\EventManager { ... }; protected $request = class Zend\Http\PhpEnvironment\Request { ... }; protected $response = class Zend\Http\PhpEnvironment\Response { ... }; protected $serviceManager = class Zend\ServiceManager\ServiceManager { ... } }; protected $request = class Zend\Http\PhpEnvironment\Request { protected $baseUrl = ''; protected $basePath = NULL; protected $requestUri = '/agency/edit/4'; protected $serverParams = class Zend\Stdlib\Parameters { ... }; protected $envParams = class Zend\Stdlib\Parameters { ... }; protected $method = 'GET'; protected $uri = class Zend\Uri\Http { ... }; protected $queryParams = NULL; protected $postParams = NULL; protected $fileParams = NULL; protected $version = '1.1'; protected $headers = class Zend\Http\Headers { ... }; protected $metadata = array (...); protected $content = '' }; protected $response = class Zend\Http\PhpEnvironment\Response { protected $version = NULL; protected $headersSent = FALSE; protected $contentSent = FALSE; protected $recommendedReasonPhrases = array (...); protected $statusCode = 200; protected $reasonPhrase = NULL; protected $headers = NULL; protected $metadata = array (...); protected $content = '' }; protected $result = class Zend\View\Model\ViewModel { protected $captureTo = 'content'; protected $children = array (...); protected $options = array (...); protected $template = 'admin/agency/create.phtml'; protected $terminate = FALSE; protected $variables = array (...); protected $append = FALSE }; protected $router = class Zend\Mvc\Router\Http\TreeRouteStack { protected $baseUrl = ''; protected $requestUri = class Zend\Uri\Http { ... }; protected $routes = class Zend\Mvc\Router\PriorityList { ... }; protected $routePluginManager = class Zend\Mvc\Router\RoutePluginManager { ... }; protected $defaultParams = array (...) }; protected $routeMatch = class Zend\Mvc\Router\Http\RouteMatch { protected $length = 14; protected $params = array (...); protected $matchedRouteName = 'admin' }; protected $viewModel = class Zend\View\Model\ViewModel { protected $captureTo = 'content'; protected $children = array (...); protected $options = array (...); protected $template = 'theme'; protected $terminate = FALSE; protected $variables = class Zend\View\Variables { ... }; protected $append = FALSE }; protected $name = 'render'; protected $target = class Zend\Mvc\Application { protected $configuration = array (...); protected $event = ...; protected $events = class Zend\EventManager\EventManager { ... }; protected $request = class Zend\Http\PhpEnvironment\Request { ... }; protected $response = class Zend\Http\PhpEnvironment\Response { ... }; protected $serviceManager = class Zend\ServiceManager\ServiceManager { ... } }; protected $params = array ('application' => class Zend\Mvc\Application { ... }, 'request' => class Zend\Http\PhpEnvironment\Request { ... }, 'response' => class Zend\Http\PhpEnvironment\Response { ... }, 'router' => class Zend\Mvc\Router\Http\TreeRouteStack { ... }, 'route-match' => class Zend\Mvc\Router\Http\RouteMatch { ... }, '__RESULT__' => class Zend\View\Model\ViewModel { ... }); protected $stopPropagation = FALSE } ) ../EventManager.php:0
8 0.0715 8120520 Zend\View\View->render( class Zend\View\Model\ViewModel { protected $captureTo = 'content'; protected $children = array (0 => class Zend\View\Model\ViewModel { ... }); protected $options = array (); protected $template = 'theme'; protected $terminate = FALSE; protected $variables = class Zend\View\Variables { }; protected $append = FALSE } ) ../DefaultRenderingStrategy.php:128
9 0.0717 8123904 Zend\View\View->renderChildren( class Zend\View\Model\ViewModel { protected $captureTo = 'content'; protected $children = array (0 => class Zend\View\Model\ViewModel { ... }); protected $options = array (); protected $template = 'theme'; protected $terminate = FALSE; protected $variables = class Zend\View\Variables { }; protected $append = FALSE } ) ../View.php:196
10 0.0717 8125872 Zend\View\View->render( class Zend\View\Model\ViewModel { protected $captureTo = 'content'; protected $children = array (); protected $options = array ('has_parent' => TRUE); protected $template = 'admin/agency/create.phtml'; protected $terminate = FALSE; protected $variables = array ('form' => class Admin\Form\Agency { ... }); protected $append = FALSE } ) ../View.php:231
11 0.0719 8128944 Zend\View\Renderer\PhpRenderer->render( class Zend\View\Model\ViewModel { protected $captureTo = 'content'; protected $children = array (); protected $options = array ('has_parent' => TRUE); protected $template = 'admin/agency/create.phtml'; protected $terminate = FALSE; protected $variables = array ('form' => class Admin\Form\Agency { ... }); protected $append = FALSE }, ??? ) ../View.php:203
12 0.0721 8175368 include( '/srv/www/workspace/platypus/PrintExchange/module/Admin/view/admin/agency/create.phtml' ) ../PhpRenderer.php:461
13 0.0735 8254808 Zend\View\Renderer\PhpRenderer->adminForm( class Admin\Form\Agency { protected $serviceLocator = class Zend\ServiceManager\ServiceManager { protected $canonicalNames = array (...); protected $allowOverride = FALSE; protected $invokableClasses = array (...); protected $factories = array (...); protected $abstractFactories = array (...); protected $pendingAbstractFactoryRequests = array (...); protected $shared = array (...); protected $instances = array (...); protected $aliases = array (...); protected $initializers = array (...); protected $peeringServiceManagers = array (...); protected $shareByDefault = TRUE; protected $retrieveFromPeeringManagerFirst = FALSE; protected $throwExceptionInCreate = TRUE; protected $canonicalNamesReplacements = array (...) }; protected $displaygroup = array (0 => class cwdAdmin\Form\DisplayGroup { ... }, 1 => class cwdAdmin\Form\DisplayGroup { ... }, 2 => class cwdAdmin\Form\DisplayGroup { ... }); protected $attributes = array ('method' => 'post', 'name' => 'agency'); protected $bindAs = 17; protected $bindOnValidate = 0; protected $baseFieldset = NULL; protected $data = NULL; protected $filter = class Zend\InputFilter\InputFilter { protected $factory = NULL; protected $data = NULL; protected $inputs = array (...); protected $invalidInputs = NULL; protected $validationGroup = NULL; protected $validInputs = NULL }; protected $useInputFilterDefaults = TRUE; protected $hasAddedInputFilterDefaults = FALSE; protected $hasValidated = FALSE; protected $isValid = FALSE; protected $isPrepared = FALSE; protected $wrapElements = FALSE; protected $validationGroup = NULL; protected $factory = NULL; protected $byName = array ('agency_id' => class Zend\Form\Element { ... }, 'name' => class Zend\Form\Element { ... }, 'address' => class Zend\Form\Element { ... }, 'address2' => class Zend\Form\Element { ... }, 'zipcode' => class Zend\Form\Element { ... }, 'city' => class Zend\Form\Element { ... }, 'uid' => class Zend\Form\Element { ... }, 'country' => class Zend\Form\Element\Select { ... }, 'phone' => class Zend\Form\Element { ... }, 'fax' => class Zend\Form\Element { ... }, 'url' => class Zend\Form\Element { ... }, 'email' => class Zend\Form\Element { ... }, 'mandator' => class Zend\Form\Element\Select { ... }); protected $elements = array ('agency_id' => class Zend\Form\Element { ... }, 'name' => class Zend\Form\Element { ... }, 'address' => class Zend\Form\Element { ... }, 'address2' => class Zend\Form\Element { ... }, 'zipcode' => class Zend\Form\Element { ... }, 'city' => class Zend\Form\Element { ... }, 'uid' => class Zend\Form\Element { ... }, 'country' => class Zend\Form\Element\Select { ... }, 'phone' => class Zend\Form\Element { ... }, 'fax' => class Zend\Form\Element { ... }, 'url' => class Zend\Form\Element { ... }, 'email' => class Zend\Form\Element { ... }, 'mandator' => class Zend\Form\Element\Select { ... }); protected $fieldsets = array (); protected $messages = array (); protected $iterator = class Zend\Stdlib\PriorityQueue { protected $queueClass = 'Zend\\Stdlib\\SplPriorityQueue'; protected $items = array (...); protected $queue = class Zend\Stdlib\SplPriorityQueue { ... } }; protected $hydrator = class DoctrineORMModule\Stdlib\Hydrator\DoctrineEntity { protected $objectManager = class Doctrine\ORM\EntityManager { ... }; protected $metadata = NULL; protected $hydrator = class Zend\Stdlib\Hydrator\ClassMethods { ... }; protected $strategies = class ArrayObject { ... } }; protected $object = class Admin\Entity\Agency { protected $inputFilter = class Zend\InputFilter\InputFilter { ... }; private $agencyId = 4; private $name = 'Testing'; private $address = ''; private $address2 = ''; private $zipcode = ''; private $city = ''; private $country = 'AF'; private $phone = ''; private $fax = ''; private $url = ''; private $email = ''; private $uid = ''; private $mandator = class DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator { ... } }; protected $useAsBaseFieldset = FALSE; protected $label = NULL; protected $labelAttributes = NULL; protected $options = array (); protected $value = NULL } ) ../create.phtml:3
14 0.0735 8255320 Zend\View\Renderer\PhpRenderer->__call( 'adminForm', array (0 => class Admin\Form\Agency { protected $serviceLocator = class Zend\ServiceManager\ServiceManager { ... }; protected $displaygroup = array (...); protected $attributes = array (...); protected $bindAs = 17; protected $bindOnValidate = 0; protected $baseFieldset = NULL; protected $data = NULL; protected $filter = class Zend\InputFilter\InputFilter { ... }; protected $useInputFilterDefaults = TRUE; protected $hasAddedInputFilterDefaults = FALSE; protected $hasValidated = FALSE; protected $isValid = FALSE; protected $isPrepared = FALSE; protected $wrapElements = FALSE; protected $validationGroup = NULL; protected $factory = NULL; protected $byName = array (...); protected $elements = array (...); protected $fieldsets = array (...); protected $messages = array (...); protected $iterator = class Zend\Stdlib\PriorityQueue { ... }; protected $hydrator = class DoctrineORMModule\Stdlib\Hydrator\DoctrineEntity { ... }; protected $object = class Admin\Entity\Agency { ... }; protected $useAsBaseFieldset = FALSE; protected $label = NULL; protected $labelAttributes = NULL; protected $options = array (...); protected $value = NULL }) ) ../PhpRenderer.php:0
15 0.0736 8263264 call_user_func_array ( class cwdAdmin\View\Helper\Form { protected $elementHelper = NULL; protected $rendered = array (); protected $view = class Zend\View\Renderer\PhpRenderer { private $__content = ''; private $__renderTrees = FALSE; private $__template = 'admin/agency/create.phtml'; private $__templates = array (...); private $__templateResolver = class Zend\View\Resolver\AggregateResolver { ... }; private $__file = '/srv/www/workspace/platypus/PrintExchange/module/Admin/view/admin/agency/create.phtml'; private $__helpers = class Zend\View\HelperPluginManager { ... }; private $__filterChain = NULL; private $__vars = class Zend\View\Variables { ... }; private $__varsCache = array (...) } }, array (0 => class Admin\Form\Agency { protected $serviceLocator = class Zend\ServiceManager\ServiceManager { ... }; protected $displaygroup = array (...); protected $attributes = array (...); protected $bindAs = 17; protected $bindOnValidate = 0; protected $baseFieldset = NULL; protected $data = NULL; protected $filter = class Zend\InputFilter\InputFilter { ... }; protected $useInputFilterDefaults = TRUE; protected $hasAddedInputFilterDefaults = FALSE; protected $hasValidated = FALSE; protected $isValid = FALSE; protected $isPrepared = FALSE; protected $wrapElements = FALSE; protected $validationGroup = NULL; protected $factory = NULL; protected $byName = array (...); protected $elements = array (...); protected $fieldsets = array (...); protected $messages = array (...); protected $iterator = class Zend\Stdlib\PriorityQueue { ... }; protected $hydrator = class DoctrineORMModule\Stdlib\Hydrator\DoctrineEntity { ... }; protected $object = class Admin\Entity\Agency { ... }; protected $useAsBaseFieldset = FALSE; protected $label = NULL; protected $labelAttributes = NULL; protected $options = array (...); protected $value = NULL }) ) ../PhpRenderer.php:355
16 0.0736 8263752 cwdAdmin\View\Helper\Form->__invoke( class Admin\Form\Agency { protected $serviceLocator = class Zend\ServiceManager\ServiceManager { protected $canonicalNames = array (...); protected $allowOverride = FALSE; protected $invokableClasses = array (...); protected $factories = array (...); protected $abstractFactories = array (...); protected $pendingAbstractFactoryRequests = array (...); protected $shared = array (...); protected $instances = array (...); protected $aliases = array (...); protected $initializers = array (...); protected $peeringServiceManagers = array (...); protected $shareByDefault = TRUE; protected $retrieveFromPeeringManagerFirst = FALSE; protected $throwExceptionInCreate = TRUE; protected $canonicalNamesReplacements = array (...) }; protected $displaygroup = array (0 => class cwdAdmin\Form\DisplayGroup { ... }, 1 => class cwdAdmin\Form\DisplayGroup { ... }, 2 => class cwdAdmin\Form\DisplayGroup { ... }); protected $attributes = array ('method' => 'post', 'name' => 'agency'); protected $bindAs = 17; protected $bindOnValidate = 0; protected $baseFieldset = NULL; protected $data = NULL; protected $filter = class Zend\InputFilter\InputFilter { protected $factory = NULL; protected $data = NULL; protected $inputs = array (...); protected $invalidInputs = NULL; protected $validationGroup = NULL; protected $validInputs = NULL }; protected $useInputFilterDefaults = TRUE; protected $hasAddedInputFilterDefaults = FALSE; protected $hasValidated = FALSE; protected $isValid = FALSE; protected $isPrepared = FALSE; protected $wrapElements = FALSE; protected $validationGroup = NULL; protected $factory = NULL; protected $byName = array ('agency_id' => class Zend\Form\Element { ... }, 'name' => class Zend\Form\Element { ... }, 'address' => class Zend\Form\Element { ... }, 'address2' => class Zend\Form\Element { ... }, 'zipcode' => class Zend\Form\Element { ... }, 'city' => class Zend\Form\Element { ... }, 'uid' => class Zend\Form\Element { ... }, 'country' => class Zend\Form\Element\Select { ... }, 'phone' => class Zend\Form\Element { ... }, 'fax' => class Zend\Form\Element { ... }, 'url' => class Zend\Form\Element { ... }, 'email' => class Zend\Form\Element { ... }, 'mandator' => class Zend\Form\Element\Select { ... }); protected $elements = array ('agency_id' => class Zend\Form\Element { ... }, 'name' => class Zend\Form\Element { ... }, 'address' => class Zend\Form\Element { ... }, 'address2' => class Zend\Form\Element { ... }, 'zipcode' => class Zend\Form\Element { ... }, 'city' => class Zend\Form\Element { ... }, 'uid' => class Zend\Form\Element { ... }, 'country' => class Zend\Form\Element\Select { ... }, 'phone' => class Zend\Form\Element { ... }, 'fax' => class Zend\Form\Element { ... }, 'url' => class Zend\Form\Element { ... }, 'email' => class Zend\Form\Element { ... }, 'mandator' => class Zend\Form\Element\Select { ... }); protected $fieldsets = array (); protected $messages = array (); protected $iterator = class Zend\Stdlib\PriorityQueue { protected $queueClass = 'Zend\\Stdlib\\SplPriorityQueue'; protected $items = array (...); protected $queue = class Zend\Stdlib\SplPriorityQueue { ... } }; protected $hydrator = class DoctrineORMModule\Stdlib\Hydrator\DoctrineEntity { protected $objectManager = class Doctrine\ORM\EntityManager { ... }; protected $metadata = NULL; protected $hydrator = class Zend\Stdlib\Hydrator\ClassMethods { ... }; protected $strategies = class ArrayObject { ... } }; protected $object = class Admin\Entity\Agency { protected $inputFilter = class Zend\InputFilter\InputFilter { ... }; private $agencyId = 4; private $name = 'Testing'; private $address = ''; private $address2 = ''; private $zipcode = ''; private $city = ''; private $country = 'AF'; private $phone = ''; private $fax = ''; private $url = ''; private $email = ''; private $uid = ''; private $mandator = class DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator { ... } }; protected $useAsBaseFieldset = FALSE; protected $label = NULL; protected $labelAttributes = NULL; protected $options = array (); protected $value = NULL } ) ../PhpRenderer.php:0
17 0.1170 8459864 cwdAdmin\View\Helper\Form->render( class Zend\Form\Element\Select { protected $attributes = array ('type' => 'select', 'name' => 'mandator', 'id' => 'mandator', 'class' => 'select full-width '); protected $validator = NULL; protected $emptyOption = NULL; protected $valueOptions = array (1 => 'Österreich Print', 2 => 'Test Instance', 3 => 'FooBar'); protected $label = 'Mandator'; protected $labelAttributes = NULL; protected $messages = array (); protected $options = array (); protected $value = class DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator { private $_entityPersister = class Doctrine\ORM\Persisters\BasicEntityPersister { ... }; private $_identifier = array (...); public $__isInitialized__ = TRUE; protected $mandatorId = 1; protected $name = 'Österreich Print' } } ) ../Form.php:58
18 0.1170 8460408 Zend\View\Renderer\PhpRenderer->adminFormElementSelect( class Zend\Form\Element\Select { protected $attributes = array ('type' => 'select', 'name' => 'mandator', 'id' => 'mandator', 'class' => 'select full-width '); protected $validator = NULL; protected $emptyOption = NULL; protected $valueOptions = array (1 => 'Österreich Print', 2 => 'Test Instance', 3 => 'FooBar'); protected $label = 'Mandator'; protected $labelAttributes = NULL; protected $messages = array (); protected $options = array (); protected $value = class DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator { private $_entityPersister = class Doctrine\ORM\Persisters\BasicEntityPersister { ... }; private $_identifier = array (...); public $__isInitialized__ = TRUE; protected $mandatorId = 1; protected $name = 'Österreich Print' } } ) ../Form.php:135
19 0.1170 8460920 Zend\View\Renderer\PhpRenderer->__call( 'adminFormElementSelect', array (0 => class Zend\Form\Element\Select { protected $attributes = array (...); protected $validator = NULL; protected $emptyOption = NULL; protected $valueOptions = array (...); protected $label = 'Mandator'; protected $labelAttributes = NULL; protected $messages = array (...); protected $options = array (...); protected $value = class DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator { ... } }) ) ../PhpRenderer.php:0
20 0.1170 8461000 call_user_func_array ( class cwdAdmin\View\Helper\Form\Element\Select { protected $elementErrorsHelper = class Zend\Form\View\Helper\FormElementErrors { protected $messageCloseString = '</li></ul>'; protected $messageOpenFormat = '<ul%s><li>'; protected $messageSeparatorString = '</li><li>'; protected $attributes = array (...); protected $booleanAttributes = array (...); protected $translatableAttributes = array (...); protected $doctypeHelper = NULL; protected $escapeHtmlHelper = NULL; protected $escapeHtmlAttrHelper = NULL; protected $validGlobalAttributes = array (...); protected $validTagAttributes = array (...); protected $translator = class Zend\I18n\Translator\Translator { ... }; protected $translatorTextDomain = 'default'; protected $translatorEnabled = TRUE; protected $view = class Zend\View\Renderer\PhpRenderer { ... } }; protected $translator = class Zend\I18n\Translator\Translator { protected $messages = array (...); protected $files = array (...); protected $patterns = array (...); protected $remote = array (...); protected $locale = 'de_AT'; protected $fallbackLocale = 'de_DE'; protected $cache = NULL; protected $pluginManager = class Zend\I18n\Translator\LoaderPluginManager { ... } }; protected $translatorTextDomain = 'admin'; protected $translatorEnabled = TRUE; protected $view = class Zend\View\Renderer\PhpRenderer { private $__content = ''; private $__renderTrees = FALSE; private $__template = 'admin/agency/create.phtml'; private $__templates = array (...); private $__templateResolver = class Zend\View\Resolver\AggregateResolver { ... }; private $__file = '/srv/www/workspace/platypus/PrintExchange/module/Admin/view/admin/agency/create.phtml'; private $__helpers = class Zend\View\HelperPluginManager { ... }; private $__filterChain = NULL; private $__vars = class Zend\View\Variables { ... }; private $__varsCache = array (...) } }, array (0 => class Zend\Form\Element\Select { protected $attributes = array (...); protected $validator = NULL; protected $emptyOption = NULL; protected $valueOptions = array (...); protected $label = 'Mandator'; protected $labelAttributes = NULL; protected $messages = array (...); protected $options = array (...); protected $value = class DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator { ... } }) ) ../PhpRenderer.php:355
21 0.1170 8461488 cwdAdmin\View\Helper\Form\Element\Select->__invoke( class Zend\Form\Element\Select { protected $attributes = array ('type' => 'select', 'name' => 'mandator', 'id' => 'mandator', 'class' => 'select full-width '); protected $validator = NULL; protected $emptyOption = NULL; protected $valueOptions = array (1 => 'Österreich Print', 2 => 'Test Instance', 3 => 'FooBar'); protected $label = 'Mandator'; protected $labelAttributes = NULL; protected $messages = array (); protected $options = array (); protected $value = class DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator { private $_entityPersister = class Doctrine\ORM\Persisters\BasicEntityPersister { ... }; private $_identifier = array (...); public $__isInitialized__ = TRUE; protected $mandatorId = 1; protected $name = 'Österreich Print' } } ) ../PhpRenderer.php:0
22 0.1171 8463584 Zend\View\Renderer\PhpRenderer->formElement( class Zend\Form\Element\Select { protected $attributes = array ('type' => 'select', 'name' => 'mandator', 'id' => 'mandator', 'class' => 'select full-width '); protected $validator = NULL; protected $emptyOption = NULL; protected $valueOptions = array (1 => 'Österreich Print', 2 => 'Test Instance', 3 => 'FooBar'); protected $label = 'Mandator'; protected $labelAttributes = NULL; protected $messages = array (); protected $options = array (); protected $value = class DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator { private $_entityPersister = class Doctrine\ORM\Persisters\BasicEntityPersister { ... }; private $_identifier = array (...); public $__isInitialized__ = TRUE; protected $mandatorId = 1; protected $name = 'Österreich Print' } } ) ../Select.php:36
23 0.1171 8464096 Zend\View\Renderer\PhpRenderer->__call( 'formElement', array (0 => class Zend\Form\Element\Select { protected $attributes = array (...); protected $validator = NULL; protected $emptyOption = NULL; protected $valueOptions = array (...); protected $label = 'Mandator'; protected $labelAttributes = NULL; protected $messages = array (...); protected $options = array (...); protected $value = class DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator { ... } }) ) ../PhpRenderer.php:0
24 0.1171 8464176 call_user_func_array ( class Zend\Form\View\Helper\FormElement { protected $view = class Zend\View\Renderer\PhpRenderer { private $__content = ''; private $__renderTrees = FALSE; private $__template = 'admin/agency/create.phtml'; private $__templates = array (...); private $__templateResolver = class Zend\View\Resolver\AggregateResolver { ... }; private $__file = '/srv/www/workspace/platypus/PrintExchange/module/Admin/view/admin/agency/create.phtml'; private $__helpers = class Zend\View\HelperPluginManager { ... }; private $__filterChain = NULL; private $__vars = class Zend\View\Variables { ... }; private $__varsCache = array (...) } }, array (0 => class Zend\Form\Element\Select { protected $attributes = array (...); protected $validator = NULL; protected $emptyOption = NULL; protected $valueOptions = array (...); protected $label = 'Mandator'; protected $labelAttributes = NULL; protected $messages = array (...); protected $options = array (...); protected $value = class DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator { ... } }) ) ../PhpRenderer.php:355
25 0.1171 8464664 Zend\Form\View\Helper\FormElement->__invoke( class Zend\Form\Element\Select { protected $attributes = array ('type' => 'select', 'name' => 'mandator', 'id' => 'mandator', 'class' => 'select full-width '); protected $validator = NULL; protected $emptyOption = NULL; protected $valueOptions = array (1 => 'Österreich Print', 2 => 'Test Instance', 3 => 'FooBar'); protected $label = 'Mandator'; protected $labelAttributes = NULL; protected $messages = array (); protected $options = array (); protected $value = class DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator { private $_entityPersister = class Doctrine\ORM\Persisters\BasicEntityPersister { ... }; private $_identifier = array (...); public $__isInitialized__ = TRUE; protected $mandatorId = 1; protected $name = 'Österreich Print' } } ) ../PhpRenderer.php:0
26 0.1171 8464664 Zend\Form\View\Helper\FormElement->render( class Zend\Form\Element\Select { protected $attributes = array ('type' => 'select', 'name' => 'mandator', 'id' => 'mandator', 'class' => 'select full-width '); protected $validator = NULL; protected $emptyOption = NULL; protected $valueOptions = array (1 => 'Österreich Print', 2 => 'Test Instance', 3 => 'FooBar'); protected $label = 'Mandator'; protected $labelAttributes = NULL; protected $messages = array (); protected $options = array (); protected $value = class DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator { private $_entityPersister = class Doctrine\ORM\Persisters\BasicEntityPersister { ... }; private $_identifier = array (...); public $__isInitialized__ = TRUE; protected $mandatorId = 1; protected $name = 'Österreich Print' } } ) ../FormElement.php:216
27 0.1172 8464664 Zend\Form\View\Helper\FormSelect->__invoke( class Zend\Form\Element\Select { protected $attributes = array ('type' => 'select', 'name' => 'mandator', 'id' => 'mandator', 'class' => 'select full-width '); protected $validator = NULL; protected $emptyOption = NULL; protected $valueOptions = array (1 => 'Österreich Print', 2 => 'Test Instance', 3 => 'FooBar'); protected $label = 'Mandator'; protected $labelAttributes = NULL; protected $messages = array (); protected $options = array (); protected $value = class DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator { private $_entityPersister = class Doctrine\ORM\Persisters\BasicEntityPersister { ... }; private $_identifier = array (...); public $__isInitialized__ = TRUE; protected $mandatorId = 1; protected $name = 'Österreich Print' } } ) ../FormElement.php:160
28 0.1172 8464664 Zend\Form\View\Helper\FormSelect->render( class Zend\Form\Element\Select { protected $attributes = array ('type' => 'select', 'name' => 'mandator', 'id' => 'mandator', 'class' => 'select full-width '); protected $validator = NULL; protected $emptyOption = NULL; protected $valueOptions = array (1 => 'Österreich Print', 2 => 'Test Instance', 3 => 'FooBar'); protected $label = 'Mandator'; protected $labelAttributes = NULL; protected $messages = array (); protected $options = array (); protected $value = class DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator { private $_entityPersister = class Doctrine\ORM\Persisters\BasicEntityPersister { ... }; private $_identifier = array (...); public $__isInitialized__ = TRUE; protected $mandatorId = 1; protected $name = 'Österreich Print' } } ) ../FormSelect.php:233
29 0.1173 8466952 Zend\Form\View\Helper\FormSelect->renderOptions( array (1 => 'Österreich Print', 2 => 'Test Instance', 3 => 'FooBar'), array ('\0DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator\0_entityPersister' => class Doctrine\ORM\Persisters\BasicEntityPersister { protected $_class = class Doctrine\ORM\Mapping\ClassMetadata { ... }; protected $_conn = class Doctrine\DBAL\Connection { ... }; protected $_platform = class Doctrine\DBAL\Platforms\MySqlPlatform { ... }; protected $_em = class Doctrine\ORM\EntityManager { ... }; protected $_queuedInserts = array (...); protected $_rsm = class Doctrine\ORM\Query\ResultSetMapping { ... }; protected $_columnTypes = array (...); protected $quotedColumns = array (...); private $_insertSql = NULL; protected $_selectColumnListSql = 't0.mandator_id AS mandator_id1, t0.name AS name2'; protected $_selectJoinSql = ''; protected $_sqlAliasCounter = 3; protected $_sqlTableAliases = array (...); protected $quoteStrategy = class Doctrine\ORM\Mapping\DefaultQuoteStrategy { ... } }, '\0DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator\0_identifier' => array ('mandatorId' => '1'), '__isInitialized__' => TRUE, '\0*\0mandatorId' => 1, '\0*\0name' => 'Österreich Print') ) ../FormSelect.php:104
30 0.1174 8468976 in_array ( 1, array ('\0DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator\0_entityPersister' => class Doctrine\ORM\Persisters\BasicEntityPersister { protected $_class = class Doctrine\ORM\Mapping\ClassMetadata { ... }; protected $_conn = class Doctrine\DBAL\Connection { ... }; protected $_platform = class Doctrine\DBAL\Platforms\MySqlPlatform { ... }; protected $_em = class Doctrine\ORM\EntityManager { ... }; protected $_queuedInserts = array (...); protected $_rsm = class Doctrine\ORM\Query\ResultSetMapping { ... }; protected $_columnTypes = array (...); protected $quotedColumns = array (...); private $_insertSql = NULL; protected $_selectColumnListSql = 't0.mandator_id AS mandator_id1, t0.name AS name2'; protected $_selectJoinSql = ''; protected $_sqlAliasCounter = 3; protected $_sqlTableAliases = array (...); protected $quoteStrategy = class Doctrine\ORM\Mapping\DefaultQuoteStrategy { ... } }, '\0DoctrineORMModule\Proxy\__CG__\Admin\Entity\Mandator\0_identifier' => array ('mandatorId' => '1'), '__isInitialized__' => TRUE, '\0*\0mandatorId' => 1, '\0*\0name' => 'Österreich Print') ) ../FormSelect.php:163
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment