123456789101112131415161718192021 |
- <?php
- class Model2{
- public function filterData($post){
- $data=array(
- 'back_color'=>$post['back_color'],
- 'padding_top'=>$post['padding_top'],
- 'padding_bottom'=>$post['padding_bottom'],
- 'model_width'=>$post['model_width'],
- 'model_height'=>$post['model_height'],
- 'editor_content'=>$post['editor_content'],
- );
- return ds_callback(true,'',$data);
- }
-
- public function formatData($config){
- $config=json_decode($config,true);
- return ds_callback(true,'',$config);
- }
- }
|