$banner_action

This commit is contained in:
CHIEFSOFT\ameye
2024-11-07 06:54:42 -05:00
parent fc9db10e63
commit e72d915ea6
+25
View File
@@ -468,6 +468,7 @@ class ResultFormatter extends Model
for ($i = 0; $i < $total; $i++) {
$key = sprintf("%05d", $i);
$banner_action = $out["action_${key}"];
/*
$res["result_list"][] =
[$banner_action =>
["banner" =>
@@ -493,6 +494,30 @@ class ResultFormatter extends Model
]
]
];
*/
$res["result_list"][$banner_action] =
["banner" =>
[
"text" => $out["title_${key}"],
"contract" => $out["contract_${key}"],
"card_type" => $out["card_type_${key}"],
"style" => $out["card_style_${key}"],
"description" => $out["description_${key}"],
"blog_id" => $out["blog_id_${key}"],
"card_icon" => $out["card_icon_${key}"],
"offer_id" => $out["offer_id_${key}"],
"image" => $this->fixEmptyBanner( $out["banner_${key}"]),
"banner_location" => $out["banner_location_${key}"],
"link_path" => $out["link_path_${key}"],
"action" => $banner_action,
"button_text" => $out["button_text_${key}"],
"short_button_text" => $out["short_button_text_${key}"],
"short_title" => $out["short_title_${key}"],
"short_description" => $out["short_description_${key}"],
"short_style" => $out["short_style_${key}"],
"status"=> 1
]
];
}
break;