TitanFrameworkOptionMulticheck::registerCustomizerControl PHP Méthode

registerCustomizerControl() public méthode

* Display for theme customizer
public registerCustomizerControl ( $wp_customize, $section, $priority = 1 )
    public function registerCustomizerControl($wp_customize, $section, $priority = 1)
    {
        $wp_customize->add_control(new TitanFrameworkOptionMulticheckControl($wp_customize, $this->getID(), array('label' => $this->settings['name'], 'section' => $section->settings['id'], 'settings' => $this->getID(), 'description' => $this->settings['desc'], 'options' => $this->settings['options'], 'select_all' => $this->settings['select_all'], 'priority' => $priority)));
    }