This file contains 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 Accounting; | |
use Zend\Module\Manager, | |
Zend\EventManager\Event, | |
Zend\EventManager\StaticEventManager, | |
Zend\Module\Consumer\AutoloaderProvider; | |
class Module implements AutoloaderProvider { |
This file contains 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 | |
/* | |
* To change this template, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
/** | |
* Description of Paginator | |
* |
This file contains 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
$movies = $this->_em->createQueryBuilder(); | |
$movies->add("select", "m") | |
->add("from", "Movies m") | |
->add("where", "m.active = '1'"); | |
$pagin = new Zend_Paginator(new Paginator($movies)); | |
$pagin->setItemCountPerPage(10); |
This file contains 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
<? | |
if (array_key_exists('lang', $_GET)) { | |
$currentlang = $_GET['lang']; | |
} else { | |
$currentlang = 'en'; | |
} | |
$langdataArray = array( | |
'texten' => 'textfa', | |
); |
This file contains 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
$this->add(array( | |
'type' => 'Zend\Form\Element\Collection', | |
'name' => 'hostmacros', | |
'twb-layout' => \TwbBundle\Form\View\Helper\TwbBundleForm::LAYOUT_INLINE, | |
'options' => array( | |
// 'label' => 'Please choose categories for this product', | |
// 'count' => 2, | |
'twb-layout' => \TwbBundle\Form\View\Helper\TwbBundleForm::LAYOUT_INLINE, | |
'should_create_template' => true, |
This file contains 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
<fieldset> | |
<fieldset class="form-inline"><div class="form-group "><input name="hostmacros[0][macro]" placeholder="{$MACRO}" class="form-control" type="text" value=""></div> | |
<div class="form-group "><input name="hostmacros[0][value]" placeholder="value" class="form-control" type="text" value=""></div> | |
</fieldset><span data-template="<fieldset class="form-inline"><div class="form-group "><input name="hostmacros[__index__][macro]" placeholder="{$MACRO}" class="form-control" type="text" value=""></div> | |
<div class="form-group "><input name="hostmacros[__index__][value]" placeholder="value" class="form-control" type="text" value=""></div> | |
</fieldset>"></span></fieldset> |
This file contains 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
<fieldset class="form-control"><fieldset class="form-inline"><div class="form-group "><input name="hostmacros[0][macro]" placeholder="{$MACRO}" class="form-control" type="text" value=""></div> | |
<div class="form-group "><input name="hostmacros[0][value]" placeholder="value" class="form-control" type="text" value=""></div> | |
</fieldset><span data-template="<fieldset class="form-inline"><div class="form-group "><input name="hostmacros[__index__][macro]" placeholder="{$MACRO}" class="form-control" type="text" value=""></div> | |
<div class="form-group "><input name="hostmacros[__index__][value]" placeholder="value" class="form-control" type="text" value=""></div> | |
</fieldset>"></span></fieldset> |
This file contains 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
Pruning file `/usr/local/opt/boost/include/boost/range/iterator_range.hpp'. | |
Pruning file `/usr/local/opt/boost/include/boost/range/iterator_range_core.hpp'. | |
Pruning file `/usr/local/opt/boost/include/boost/range/iterator_range_io.hpp'. | |
Pruning file `/usr/local/opt/boost/include/boost/range/mutable_iterator.hpp'. | |
Pruning file `/usr/local/opt/boost/include/boost/range/rbegin.hpp'. | |
Pruning file `/usr/local/opt/boost/include/boost/range/rend.hpp'. | |
Pruning file `/usr/local/opt/boost/include/boost/range/result_iterator.hpp'. | |
Pruning file `/usr/local/opt/boost/include/boost/range/reverse_iterator.hpp'. | |
Pruning file `/usr/local/opt/boost/include/boost/range/size.hpp'. | |
Pruning file `/usr/local/opt/boost/include/boost/range/size_type.hpp'. |
This file contains 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
[ 26%] Built target hphp_analysis | |
[ 26%] Building CXX object hphp/hhbbc/CMakeFiles/hphp_hhbbc.dir/analyze.cpp.o | |
[ 26%] Building CXX object hphp/hhbbc/CMakeFiles/hphp_hhbbc.dir/cfg.cpp.o | |
[ 26%] Building CXX object hphp/hhbbc/CMakeFiles/hphp_hhbbc.dir/check.cpp.o | |
[ 26%] Building CXX object hphp/hhbbc/CMakeFiles/hphp_hhbbc.dir/class-util.cpp.o | |
[ 26%] Building CXX object hphp/hhbbc/CMakeFiles/hphp_hhbbc.dir/dce.cpp.o | |
[ 27%] Building CXX object hphp/hhbbc/CMakeFiles/hphp_hhbbc.dir/debug.cpp.o | |
[ 27%] Building CXX object hphp/hhbbc/CMakeFiles/hphp_hhbbc.dir/emit.cpp.o | |
[ 27%] Building CXX object hphp/hhbbc/CMakeFiles/hphp_hhbbc.dir/func-util.cpp.o | |
[ 27%] Building CXX object hphp/hhbbc/CMakeFiles/hphp_hhbbc.dir/hhbbc.cpp.o |
This file contains 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
[ 0%] Building CXX object third-party/folly/CMakeFiles/folly.dir/folly/Bits.cpp.o | |
[ 0%] Building CXX object third-party/folly/CMakeFiles/folly.dir/folly/Checksum.cpp.o | |
[ 0%] Building CXX object third-party/folly/CMakeFiles/folly.dir/folly/Conv.cpp.o | |
[ 0%] Building CXX object third-party/folly/CMakeFiles/folly.dir/folly/Demangle.cpp.o | |
[ 0%] Building CXX object third-party/folly/CMakeFiles/folly.dir/folly/dynamic.cpp.o | |
[ 0%] Building CXX object third-party/folly/CMakeFiles/folly.dir/folly/File.cpp.o | |
[ 0%] Building CXX object third-party/folly/CMakeFiles/folly.dir/folly/FileUtil.cpp.o | |
[ 0%] Building CXX object third-party/folly/CMakeFiles/folly.dir/folly/Format.cpp.o | |
[ 0%] Building CXX object third-party/folly/CMakeFiles/folly.dir/folly/GroupVarint.cpp.o | |
[ 0%] Building CXX object third-party/folly/CMakeFiles/folly.dir/folly/IPAddress.cpp.o |
OlderNewer