config.php 547 B

1234567891011121314151617181920
  1. <?php
  2. class Model1{
  3. public function filterData($post){
  4. $data=array(
  5. 'back_color'=>$post['back_color'],
  6. 'image_width'=>$post['image_width'],
  7. 'image_height'=>$post['image_height'],
  8. 'show_format'=>$post['show_format'],
  9. 'adv'=>array_values($post['adv']),
  10. );
  11. return ds_callback(true,'',$data);
  12. }
  13. public function formatData($config){
  14. $config=json_decode($config,true);
  15. return ds_callback(true,'',$config);
  16. }
  17. }