@@ 1342-1376 (lines=35) @@ | ||
1339 | } |
|
1340 | ||
1341 | ||
1342 | protected function _category_details_content() |
|
1343 | { |
|
1344 | $editor_args['category_desc'] = array( |
|
1345 | 'type' => 'wp_editor', |
|
1346 | 'value' => EEH_Formatter::admin_format_content($this->_category->category_desc), |
|
1347 | 'class' => 'my_editor_custom', |
|
1348 | 'wpeditor_args' => array('media_buttons' => false), |
|
1349 | ); |
|
1350 | $_wp_editor = $this->_generate_admin_form_fields($editor_args, 'array'); |
|
1351 | ||
1352 | $all_terms = get_terms( |
|
1353 | array('espresso_venue_categories'), |
|
1354 | array('hide_empty' => 0, 'exclude' => array($this->_category->id)) |
|
1355 | ); |
|
1356 | ||
1357 | // setup category select for term parents. |
|
1358 | $category_select_values[] = array( |
|
1359 | 'text' => __('No Parent', 'event_espresso'), |
|
1360 | 'id' => 0, |
|
1361 | ); |
|
1362 | foreach ($all_terms as $term) { |
|
1363 | $category_select_values[] = array( |
|
1364 | 'text' => $term->name, |
|
1365 | 'id' => $term->term_id, |
|
1366 | ); |
|
1367 | } |
|
1368 | ||
1369 | $category_select = EEH_Form_Fields::select_input( |
|
1370 | 'category_parent', |
|
1371 | $category_select_values, |
|
1372 | $this->_category->parent |
|
1373 | ); |
|
1374 | $template_args = array( |
|
1375 | 'category' => $this->_category, |
|
1376 | 'category_select' => $category_select, |
|
1377 | 'unique_id_info_help_link' => $this->_get_help_tab_link('unique_id_info'), |
|
1378 | 'category_desc_editor' => $_wp_editor['category_desc']['field'], |
|
1379 | 'disable' => '', |
@@ 2534-2573 (lines=40) @@ | ||
2531 | /** |
|
2532 | * Output category details content. |
|
2533 | */ |
|
2534 | protected function _category_details_content() |
|
2535 | { |
|
2536 | $editor_args['category_desc'] = array( |
|
2537 | 'type' => 'wp_editor', |
|
2538 | 'value' => EEH_Formatter::admin_format_content($this->_category->category_desc), |
|
2539 | 'class' => 'my_editor_custom', |
|
2540 | 'wpeditor_args' => array('media_buttons' => false), |
|
2541 | ); |
|
2542 | $_wp_editor = $this->_generate_admin_form_fields($editor_args, 'array'); |
|
2543 | $all_terms = get_terms( |
|
2544 | array(EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY), |
|
2545 | array('hide_empty' => 0, 'exclude' => array($this->_category->id)) |
|
2546 | ); |
|
2547 | // setup category select for term parents. |
|
2548 | $category_select_values[] = array( |
|
2549 | 'text' => esc_html__('No Parent', 'event_espresso'), |
|
2550 | 'id' => 0, |
|
2551 | ); |
|
2552 | foreach ($all_terms as $term) { |
|
2553 | $category_select_values[] = array( |
|
2554 | 'text' => $term->name, |
|
2555 | 'id' => $term->term_id, |
|
2556 | ); |
|
2557 | } |
|
2558 | $category_select = EEH_Form_Fields::select_input( |
|
2559 | 'category_parent', |
|
2560 | $category_select_values, |
|
2561 | $this->_category->parent |
|
2562 | ); |
|
2563 | $template_args = array( |
|
2564 | 'category' => $this->_category, |
|
2565 | 'category_select' => $category_select, |
|
2566 | 'unique_id_info_help_link' => $this->_get_help_tab_link('unique_id_info'), |
|
2567 | 'category_desc_editor' => $_wp_editor['category_desc']['field'], |
|
2568 | 'disable' => '', |
|
2569 | 'disabled_message' => false, |
|
2570 | ); |
|
2571 | $template = EVENTS_TEMPLATE_PATH . 'event_category_details.template.php'; |
|
2572 | return EEH_Template::display_template($template, $template_args, true); |
|
2573 | } |
|
2574 | ||
2575 | ||
2576 | /** |