@@ 563-569 (lines=7) @@ | ||
560 | return $critical_page; |
|
561 | } |
|
562 | // get newly created post's details |
|
563 | if (! $critical_page['post'] = get_post($post_id)) { |
|
564 | $msg = sprintf( |
|
565 | __('The Event Espresso critical page entitled "%s" could not be retrieved.', 'event_espresso'), |
|
566 | $critical_page['name'] |
|
567 | ); |
|
568 | EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
569 | } |
|
570 | ||
571 | return $critical_page; |
|
572 | } |
@@ 1094-1098 (lines=5) @@ | ||
1091 | // load the widget class file |
|
1092 | require_once($widget_path . '/' . $widget_class . $widget_ext); |
|
1093 | // verify that class exists |
|
1094 | if (! class_exists($widget_class)) { |
|
1095 | $msg = sprintf(__('The requested %s widget class does not exist.', 'event_espresso'), $widget_class); |
|
1096 | EE_Error::add_error($msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__); |
|
1097 | return; |
|
1098 | } |
|
1099 | register_widget($widget_class); |
|
1100 | // add to array of registered widgets |
|
1101 | EE_Registry::instance()->widgets->{$widget_class} = $widget_path . '/' . $widget_class . $widget_ext; |
@@ 2877-2890 (lines=14) @@ | ||
2874 | // default setup for it. |
|
2875 | // @link https://events.codebasehq.com/projects/event-espresso/tickets/9465 |
|
2876 | $updated = $MTP->insert($message_template_fields); |
|
2877 | if (! $updated || is_wp_error($updated)) { |
|
2878 | EE_Error::add_error( |
|
2879 | sprintf( |
|
2880 | esc_html__('%s field could not be updated.', 'event_espresso'), |
|
2881 | $template_field |
|
2882 | ), |
|
2883 | __FILE__, |
|
2884 | __FUNCTION__, |
|
2885 | __LINE__ |
|
2886 | ); |
|
2887 | $success = 0; |
|
2888 | } else { |
|
2889 | $success = 1; |
|
2890 | } |
|
2891 | } |
|
2892 | } |
|
2893 | $action_desc = 'updated'; |