option_name ); if( $page_id && post_exists( get_the_title( $page_id ) ) && get_post_status( $page_id ) === 'publish' ) { echo wp_kses_post( sprintf( /* translators: 1: link to edit page */ __( 'Your page is created!
Click here if you want to edit the page.

If you want to show a link to this page, assign the page to a menu by clicking here', 'botiga' ), esc_url( get_admin_url() . 'post.php?post='. $page_id .'&action=edit' ) ) ); } else { echo '
'; echo wp_kses_post( sprintf( /* translators: 1: page name */ __( 'It looks like you haven\'t created a %s page yet. Click the below button to create the page.', 'botiga' ), esc_html( $this->page_title ) ) ); echo '

'; echo '
'; echo ''; echo wp_kses_post( sprintf( /* translators: 1: page title, 2: page meta key, 3: page meta value, 4: option name, 5: nonce, 6: loading text, 7: success text */ __( 'Create Page', 'botiga' ), esc_attr( $this->page_title ), esc_attr( $this->page_meta_key ), esc_attr( $this->page_meta_value ), esc_attr( $this->option_name ), esc_attr( wp_create_nonce( 'customize-create-page-control-nonce' ) ), esc_attr__( 'Creating...', 'botiga' ), esc_attr__( 'Created!', 'botiga' ) ) ); } } }