function __construct($ctx = "") { parent::__construct($ctx); $this->_name = "rate_star_small_on_holo_{{holo}}.png"; }
* Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ require_once 'common-ratingstarbig.php'; $color = $_GET['color']; $size = $_GET['size']; $holo = $_GET['holo']; $component = $_GET['component']; if (isset($color) && isset($size) && isset($holo) && isset($component)) { switch ($component) { case "ratingstarbig": $sb = new RatingStarBig(HOLO_COLORS_COMPONENTS_PATH . '/ratingstarbig/'); break; case "ratingstarbig-half": $sb = new RatingStarBigHalf(HOLO_COLORS_COMPONENTS_PATH . '/ratingstarbig/'); break; default: $sb = new RatingStarBig(HOLO_COLORS_COMPONENTS_PATH . '/ratingstarbig/'); break; } $sb->generate_image($color, $size, $holo); }