Bianka Martinovic
Bianka Martinovic
This works for me: public function load(FilterInterface $additionalFilter = null) { if(function_exists('curl_init')) { $ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_URL, VarUtils::resolve($this->sourceUrl, $this->getVars(), $this->getValues()));...
I thought I could use FastRoute for my next project, but this discussion makes me feel disappointed. I see that @burzum invested a lot of time, so I could use...
I did not intend to put pressure on anyone. It's just a pity that such a sophisticated solution goes down, even though there were many offers to take over further...
Thank you Ivan! Good statement! I will have a closer look at your implementation.
I have a solution for gif now, too. The only drawback is that there's no opacity anymore, because imagecopymerge() can't be used. As you know, this causes problems with Alpha...
Code: ``` public function writeWatermark($opacity=50, $marginH=0, $marginV=0, $positionWatermarkLeftRight="c", $positionWatermarkTopBottom="c") { //Watermark list($image_create_func, $image_save_func) = $this->Watermark->getFunctionNames(); $watermark = $image_create_func($this->Watermark->getImage()); if ( $this->Watermark->getType() == 'png' ) { imagealphablending($watermark, true); imagesavealpha($watermark, true); }...
This is great news! I am interested in replacing my own FormBuilder, and Cupcake is the first alternative I like. :D A special feature of my own form builder is...
Thanks for the quick reply. Would be easy to fix, but the question is whether 2 or 3 parameters are correct / intended. Apart from the code analysis, it does...
+1 I use Fontawesome Icons for Navigation: nextText: "", prevText: "", closeText: "", Good idea to use titles, too. :)
👍 I'd like to use the Gridder on a table, problem is, the gridder content item is always inserted as a div. So theming should not only affect the CSS...