I have a metabox created on the settings page with a text field that supports cloning. I would like to call the values, entered on the settings page as teh Option-Values for an advanced checkbox in my plugin. Could you help me with how to do this?
array(
'name' => __( 'Checkbox list', 'rwmb' ),
'id' => "{$prefix}partners",
'type' => 'checkbox_list',
// I would like to call value 1, value 2 etc from the values entered on the settings page.
'options' => array(
'value1' => esc_html__( 'Label1', 'your-prefix' ),
'value2' => esc_html__( 'Label2', 'your-prefix' ),