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 Stca\Form\Element; | |
class RenderViewScript extends \Zend_Form_Element | |
{ | |
/** | |
* File name of view script | |
* @var string | |
*/ |
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
0000000000 | |
0000000000 | |
0000000000 | |
0000000000 | |
0000000000 | |
0000000000 | |
0000000000 | |
0000000000 | |
0000000000 | |
0000000000 |
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
System | |
- Provider | |
[ Name] Application Error | |
- EventID 1000 | |
[ Qualifiers] 0 | |
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 | |
$user = new User(); | |
$user->addComment(new Comment('foo')); | |
$user->addComment(new Comment('baz')); | |
$user->addComment(new Comment('bar')); | |
$em->persist($user); // i only want the "user" object to be persisted, not the whole object graph | |
$em->flush(); |
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 | |
/** | |
$stream = new Modbus('127.0.0.1'); | |
$stream->connect(); | |
//var_dump($stream->writeSingleRegister(10, 10, 1)); | |
var_dump($stream->writeSingleCoil(1, 0)); | |
var_dump($stream->readCoil(1, 1));die; | |
**/ |
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 | |
interface Mikado | |
{ | |
public function searchFreeStick(); | |
public function removeStick($i); | |
} | |
class MikadoCollectionQueue implements Mikado | |
{ |
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 Anse\Xmpp; | |
use Anse\Xmpp\Message\MessageInterface; | |
class Stream | |
{ | |
/** | |
* @var string |
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
public function getChangedReadStreams() | |
{ | |
$read = array($this->socket); | |
$write = array(); | |
$except = array(); | |
return stream_select($read, $write, $except, 5); | |
} | |
/** |
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 Anse\Xmpp; | |
use Anse\Xmpp\Message\MessageInterface; | |
class Stream | |
{ | |
/** | |
* @var string |
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
<!-- this label used to have a for="plane_colors" tag --> | |
<label class="desc optional">Kleurenpalet</label> | |
<label><input name="plane_colors[]" id="plane_colors-1" value="1" type="checkbox">Wit (100, 100, 100)</label><br> | |
<label><input name="plane_colors[]" id="plane_colors-2" value="2" checked="checked" type="checkbox">Rood (100, 0, 0)</label><br> | |
<label><input name="plane_colors[]" id="plane_colors-3" value="3" checked="checked" type="checkbox">Geel (100, 100, 0)</label><br> | |
<label><input name="plane_colors[]" id="plane_colors-4" value="4" type="checkbox">Groen (0, 100, 0)</label><br> | |
<label><input name="plane_colors[]" id="plane_colors-5" value="5" type="checkbox">Blauw (0, 0, 100)</label><br> | |
<label><input name="plane_colors[]" id="plane_colors-6" value="6" type="checkbox">Fullcolor (-, -, -)</label></div></li> |