Actions
Feature #19216
closedEnable stdWrap functionality for GIFBUILDER.XY
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2008-08-13
Due date:
% Done:
0%
Estimated time:
PHP Version:
5.2
Tags:
Complexity:
Sprint Focus:
Description
I want to create images with GIFBUILDER which don't have a fixed width and height. The XY-property can handle only static values, but i'd like to assign them dynamically. Thus, it would be great to have a stdWrap-functionality on the XY-property.
Example:
file = GIFBUILDER
file {
XY.cObject = USER
XY.cObject.userFunc = tx_myext_pi1->calculateDimensions
}
(issue imported from #M9164)
Files
Updated by Marcus Kliche over 16 years ago
I just implemented this real simple and useful feature. Please have a look. Thanks!
Updated by Georg Ringer over 13 years ago
- Category deleted (
Communication) - Status changed from New to Resolved
- Target version deleted (
0)
this is implemented
if (isset($this->setup['XY.'])) { $this->setup['XY'] = $this->cObj->stdWrap($this->setup['XY'], $this->setup['XY.']); }
Actions