create
Метод create класса SP_Framework_Customizer создает настройки кастомайзера. В качестве параметров используется массив args.
Пример
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
<?php $spCC = new SP_Framework_Customizer(); $args = array( 'name' => 'sp_framework', 'priority' => 99, 'title' => 'SP Framework', 'description' => 'SP Framework', 'section' => array( 'about' => array( 'name' => 'section_name', 'title' => 'Some Section', 'fields' => array( 'checkbox' => array( 'name' => 'checkbox_name', 'type' => 'checkbox', 'label' => 'Some Checkbox', ), 'input_text' => array( 'name' => 'input_text_name', 'type' => 'input', 'label' => 'Some Input Text', ), 'input_number' => array( 'name' => 'input_number_name', 'type' => 'number', 'label' => 'Some Input Number', ), 'textarea' => array( 'name' => 'textarea_name', 'type' => 'textarea', 'label' => 'Some Textarea', ), 'image' => array( 'name' => 'image_name', 'type' => 'image', 'label' => 'Some Image', ), ), ), ), ); $spCC->create($args); ?> |