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($.pic1FieldImg.image) { | |
//bivouac.set('pic1', str); | |
var inline = { | |
"image.png" : { | |
"content_type" : "image/png", | |
data : "...", | |
} | |
}; | |
bivouac.set("_attachments", inline); |
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 | |
/** | |
* mysql-convert-latin1-to-utf8.php | |
* | |
* Converts incorrect MySQL latin1 columns to UTF8. | |
* | |
* NOTE: Look for 'TODO's for things you may need to configure. | |
* | |
* Documentation at: | |
* http://nicj.net/2011/04/17/mysql-converting-an-incorrect-latin1-column-to-utf8 |
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
Y Achse: | |
600mm - 695mm | |
1x 211 144 2069 Spindel | |
1x 216 504 0006 Festlager | |
1x 216 504 0005 Loslager | |
1x 213 700 0005 Mutter | |
1x 213 700 9001 Spannblock | |
X Achse: |
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
<form id="CALCFORM" action="<?php echo $this->form->getAction() ?>" method="post"> | |
<?php foreach($this->form->getElements() as $element): ?> | |
<?php if($element->getType() == "TP_Form_Element_Textdisplay"): ?> | |
<div id="<?php echo $element->getId() ?>-label" class="labelWrapper <?php echo $this->cycle(array("odd","even"))->next()?> labeltext"> | |
<?php echo $element->getDecorator('label')->setElement($element)->render(''); ?> | |
</div> | |
<div id="<?php echo $element->getId() ?>-element" class="inputWrapper labeltext"> | |
<?php echo $element->getDecorator('viewHelper')->setElement($element)->render(''); ?> | |
<?php if($element->getDecorator('Help')): ?> | |
<?php echo $element->getDecorator('Help')->getOption('markup'); ?> |
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
<?xml version="1.0" encoding="utf-8"?> | |
<settings> | |
<version>1.1</version> | |
<includes> | |
<include type="css">trauerkarten.css</include> | |
<include type="javascript">trauerkarten.js</include> | |
</includes> | |
<general> | |
<size width="900" height="700"/> | |
<headline>Gestalten Sie Ihre Karte nach Wunsch</headline> |
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
<div id="wrapper-product-group" class="container hidden-phone"> | |
<!-- CAROUSEL container--> | |
<!-- CAROUSEL Productgroups --> | |
<?php $articlegroups = $this->Article()->getArticleGroups(); | |
$i = 1; | |
$anzahl = count($articlegroups); | |
?> |
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
{ | |
"type": "package", | |
"package": { | |
"name": "CCDNComponent/BBCodeBundle", | |
"version": "dev-master", | |
"source": { | |
"url": "git://github.com/codeconsortium/BBCodeBundle.git", | |
"type": "git", | |
"reference": "master" | |
}, |
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 TaKeTV\PortalBundle\Twig; | |
use CCDNComponent\CommonBundle\Manager\ManagerInterface; | |
use Symfony\Component\DependencyInjection; | |
class SiteExtension extends \Twig_Extension | |
{ | |
private $serviceContainer = false; |