Example #1
0
 public function getFeaturePaths($option_value)
 {
     if (!$this->isCachable()) {
         return array();
     }
     if ($option_value->getCode() == "custom_page") {
         return parent::getFeaturePaths($option_value);
     }
     $paths = array();
     $params = array("page_id" => $this->getId(), "value_id" => $option_value->getId());
     $paths[] = $option_value->getPath("places/mobile_list/findall", array("value_id" => $option_value->getId()), false);
     $paths[] = $option_value->getPath("cms/mobile_page_view/find", $params, false);
     return $paths;
 }