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
{ | |
"name": "PMG Repository", | |
"homepage": "http://packages.intra-server.pmg.se", | |
"require-all": true, | |
"repositories": [ | |
{ | |
"type": "package", | |
"package": { | |
"name": "mcn/article", |
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 | |
/** | |
* @author Antoine Hedgecock <[email protected]> | |
*/ | |
/** | |
* @namespace | |
*/ | |
namespace Article\Form\Fieldsets; | |
use Zend\Form\Fieldset, |
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 | |
/** | |
* @author Jonas Eriksson <[email protected]> | |
* @author Antoine Hedgecock <[email protected]> | |
*/ | |
/** | |
* @namespace | |
*/ | |
namespace Article\Form\Fieldsets; |
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 | |
/** | |
* @author Jonas Eriksson <[email protected]> | |
* @author Antoine Hedgecock <[email protected]> | |
*/ | |
/** | |
* | |
*/ | |
namespace Article\Form\Admin; |
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 | |
/** | |
* @author Antoine Hedgecock | |
*/ | |
/** | |
* @namespace | |
*/ | |
namespace Application; | |
use Zend\Permissions\Acl\Acl, |
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
(function($) { | |
$.widget('mcn.tagGeographicalArea', { | |
options: { | |
apiUrl: 'api/geographical-area/municipality/auto-complete' | |
}, | |
tags: { |
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
array (size=1) | |
'article' => | |
array (size=7) | |
'company' => | |
array (size=11) | |
'contact_name' => string 'string' (length=6) | |
'contact_phone' => string 'string' (length=6) | |
'contact_email' => string 'string' (length=6) | |
'organisation_number' => string 'string' (length=6) | |
'name' => string 'string' (length=6) |
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 | |
/** | |
* @param string $name | |
* @param string $description | |
* @param string $email | |
* @param array $variables | |
* | |
* @return boolean | |
*/ | |
public function send($name, $description, $email, array $variables = 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
<?php | |
echo $this->navigation('default-navigation') | |
->menu() | |
->setPartial('default/navigation/sub_menu') | |
->render( | |
null, | |
array( | |
'indent' => 4, | |
'ulClass' => '', | |
'minDepth' => 1, |
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 | |
/** | |
* @author Antoine Hedgecock | |
*/ | |
/** | |
* @namespace | |
*/ | |
namespace Application; | |
use Zend\Acl\Acl, |