Server IP : 162.0.217.223 / Your IP : 216.73.216.150 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/yeslicense.org/wp-content/plugins/squirrly-seo/view/Indexnow/ |
Upload File : |
<?php defined( 'ABSPATH' ) || die( 'Cheatin\' uh?' ); if ( ! isset( $view ) ) { return; } /** * Index Now Submit view * * Called from Index Now Controller */ ?> <div id="sq_wrap"> <?php $view->show_view( 'Blocks/Toolbar' ); ?> <?php do_action( 'sq_notices' ); ?> <div id="sq_content" class="d-flex flex-row bg-white my-0 p-0 m-0"> <?php if ( ! SQ_Classes_Helpers_Tools::userCan( 'sq_manage_snippet' ) ) { echo '<div class="col-12 alert alert-success text-center m-0 p-3">' . esc_html__( "You do not have permission to access this page. You need Squirrly SEO Admin role.", "squirrly-seo" ) . '</div>'; return; } ?> <?php $view->show_view( 'Blocks/Menu' ); ?> <div class="d-flex flex-row flex-nowrap flex-grow-1 bg-light m-0 p-0"> <div class="flex-grow-1 sq_flex m-0 py-0 px-4 pb-4"> <?php do_action( 'sq_form_notices' ); ?> <div class="sq_breadcrumbs my-4"><?php SQ_Classes_ObjController::getClass( 'SQ_Models_Menu' )->showBreadcrumbs( SQ_Classes_Helpers_Tools::getValue( 'page' ) . '/' . SQ_Classes_Helpers_Tools::getValue( 'tab', 'submit' ) ) ?></div> <div class="col-12 p-0 m-0"> <?php $metas = json_decode( wp_json_encode( SQ_Classes_Helpers_Tools::getOption( 'sq_metas' ) ) ); ?> <form method="POST"> <?php SQ_Classes_Helpers_Tools::setNonce( 'sq_seosettings_indexnow_submit' ); ?> <input type="hidden" name="action" value="sq_seosettings_indexnow_submit"/> <h3 class="mt-4 card-title"> <?php echo esc_html__( "Submit URLs for Auto-Indexing", "squirrly-seo" ); ?> <div class="sq_help_question d-inline"> <a href="https://howto12.squirrly.co/kb/indexnow/" target="_blank"><i class="fa-solid fa-question-circle"></i></a> </div> </h3> <div class="col-7 small m-0 p-0"> <?php echo esc_html__( "Manually send URLs to the IndexNow API AND the Google Indexing API.", "squirrly-seo" ); ?> </div> <div class="col-12 p-0 m-0 my-5"> <div class="col-12 row m-0 p-0 my-5"> <div class="col-4 m-0 p-0 font-weight-bold"> <label for="indexnow_urls"><?php echo esc_html__( "URLs", "squirrly-seo" ); ?> :</label> <div class="small text-black-50 my-1 pr-3"><?php echo esc_html__( "Insert the URLs you want to send to the Auto-Indexing (one per line, up to 10,000)", "squirrly-seo" ); ?></div> </div> <div class="col-8 p-0"> <textarea id="indexnow_urls" class="form-control" name="urls" rows="5" placeholder="<?php echo esc_url( home_url() ) ?>"></textarea> </div> </div> <div class="col-12 m-0 p-0 mt-5"> <button type="submit" class="btn btn-primary btn-lg m-0 p-0 py-2 px-4 rounded-0"><?php echo esc_html__( "Submit URLs", "squirrly-seo" ); ?></button> </div> </div> </form> </div> <?php $log = get_option( 'sq_indexnow_log', [] ); ?> <div class="col-12 m-0 p-0"> <div class="col-12 m-0 p-0 my-5"> <h3 class="py-0 card-title"> <?php echo esc_html__( "Auto-Indexing History (sent to both Google Indexing API and IndexNow)", "squirrly-seo" ); ?> </h3> <div class="col-7 small m-0 p-0"> <?php echo esc_html__( "Check the log to see how your URLs were submited. Make sure your Google Search Console is connected.", "squirrly-seo" ); ?> </div> <?php if ( ! empty( $log ) ) { ?> <div class="col-12 text-right m-0 p-0 my-1"> <form method="POST"> <?php SQ_Classes_Helpers_Tools::setNonce( 'sq_seosettings_indexnow_clear' ); ?> <input type="hidden" name="action" value="sq_seosettings_indexnow_clear"/> <button type="submit" class="btn btn-light btn-sm"><?php echo esc_html__( "Clear log", "squirrly-seo" ); ?></button> </form> </div> <table class="table table-striped table-hover"> <thead> <tr> <th style="width: 50%;" scope="col"><?php echo esc_html__( "URL", "squirrly-seo" ) ?></th> <th style="width: 25%;" scope="col"><?php echo esc_html__( "Message", 'squirrly-seo' ) ?></th> <th style="width: 25%;" scope="col"><?php echo esc_html__( "Date", 'squirrly-seo' ) ?></th> </tr> </thead> <tbody> <?php $log = array_slice( $log, - 20 ); $log = array_reverse( $log ); foreach ( $log as $row ) { $timestamp = (int) $row['time'] + ( (int) get_option( 'gmt_offset' ) * 3600 ); ?> <tr> <td><?php echo esc_html( $row['url'] ) ?> <em><?php echo( ! esc_attr( $row['manual'] ) ? '<i title="' . esc_attr__( "Submited automatically", 'squirrly-seo' ) . '" class="dashicons dashicons-cloud-saved m-1"></i>' : '' ) ?></em> </td> <td><?php echo esc_html( $row['status'] ) ?> <em>(<?php echo esc_html( $row['message'] ) ?>)</em></td> <td><?php echo esc_html( wp_date( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ), $timestamp ) ) ?></td> </tr> <?php } ?> </tbody> </table> <?php } else { ?> <table class="table table-striped table-hover mt-3"> <thead> <tr> <th style="width: 50%;"><?php echo esc_html__( "URL", 'squirrly-seo' ) ?></th> <th scope="col"><?php echo esc_html__( "Message", 'squirrly-seo' ) ?></th> <th scope="col"><?php echo esc_html__( "Date", 'squirrly-seo' ) ?></th> </tr> </thead> <tbody> <tr> <td colspan="3"><?php echo esc_html__( "No requests so far", 'squirrly-seo' ) ?></td> </tbody> </table> <?php } ?> </div> </div> <?php do_action( 'sq_indexnow_after' ); ?> <?php SQ_Classes_ObjController::getClass( 'SQ_Core_BlockKnowledgeBase' )->init(); ?> </div> <div class="sq_col_side bg-white"> <div class="col-12 m-0 p-0 sq_sticky"> <?php do_action( 'sq_indexnow_side_after' ); ?> </div> </div> </div> </div> </div>