62 $this->_zoomScale = 100;
63 $this->_zoomScaleNormal = 100;
85 if (($pValue >= 10 && $pValue <= 400) || is_null($pValue)) {
86 $this->_zoomScale = $pValue;
88 throw new Exception(
"Valid scale is between 10 and 400.");
112 if (($pValue >= 10 && $pValue <= 400) || is_null($pValue)) {
113 $this->_zoomScaleNormal = $pValue;
115 throw new Exception(
"Valid scale is between 10 and 400.");
124 $vars = get_object_vars($this);
125 foreach ($vars as
$key => $value) {
126 if (is_object($value)) {
127 $this->
$key = clone $value;
129 $this->
$key = $value;