Lines Matching full:if
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
52 if ($renderer->getCurrentStyle() !== $this->styleName) {
58 // Indicates if the cell background must be painted (1) or transparent (0)
59 if ($this->fill) {
60 if (!empty($this->bgcolor)) {
62 if (preg_match('/#?(..)(..)(..)/', $this->bgcolor, $match)) {
69 // If no color set then don't fill
76 if (preg_match('/#?(..)(..)(..)/', $this->bocolor, $match)) {
84 if (preg_match('/#?(..)(..)(..)/', $this->tcolor, $match)) {
93 // If current position (left)
94 if ($this->left === ReportBaseElement::CURRENT_POSITION) {
101 // Check the width if set to page wide OR set by xml to larger then page wide
102 if ($this->width === 0.0 || $this->width > $renderer->getRemainingWidthPDF()) {
106 if ($this->top === ReportBaseElement::CURRENT_POSITION) {
112 // Check the last cell height and adjust the current cell height if needed
113 if ($renderer->lastCellHeight > $this->height) {
117 if (!empty($temptext)) {
122 if (is_array($cM['cell'])) {
127 // Add a new page if needed
128 if ($renderer->checkPageBreakPDF($cHT)) {
149 if ($this->newline >= 1) {
152 // OR save the last height if higher then before
156 // Set up the url link if exists on top of the cell
157 if (!empty($this->url)) {