H ajax_query_attachments_args Ė hT U l U https://wpshowposts.com/ U , default_option_site_logo U g U % edd_plugin_url_available s U H,r wp_ajax_save_attachment_compat @ U U U स` wp_ajax_save_attachment_order S U XZ, get_image_send_to_editor Z2,! rel="attachment wp-att- -]K wp_ajax_send_link_to_editor '- wp_ajax_get_revision_diffs nr show_update_notification .php m3,X wp_ajax_save_user_color_scheme 3h ј install_themes_table_api_args_ %Yx update.php?action=install-theme U @ U hn U /o %^(\[embed[^\]]*\])http://%i %i m U cܳ'T %]*href="http://% ' class="wp-embedded-content Rv'L4F wp_ajax_parse_media_shortcode
U U -%H wp_ajax_destroy_sessions pv~j Image could not be processed. _o$ option_gen_premium_license_key
wp_ajax_crop_image_pre_save U ̖ k U ؖ U Ld wp_ajax_cropped_attachment_id U )d
yG wp_ajax_generate_password JQb* wp_ajax_save_wporg_username h U https://generatepress.com/ U j U U U hi U n
74 Theme could not be deleted. gp-premium/gp-premium.php U U<~ڄ install_plugin_install_status nr show_update_notification system @ U Ȗ j U Y Plugin could not be deleted. 7 wp_ajax_search_install_plugins J(8f WP_Plugin_Install_List_Table ӻYC wp_ajax_edit_theme_plugin_file 05It wp_edit_theme_plugin_file 1% T File edited successfully. @ U Zo!Y Exporter index is out of range. b U 3c2U wp-privacy-erase-personal-data- 8L Eraser index is out of range. BH4L health-check-site-status a U BH4L health-check-site-status /**
* @var Terminable[]
*/ BH4L health-check-site-status H \ \ \ U X
health-check-site-status-result bool $echo = false,
string $select = '*'
): ?stdClass;
/**
* @param string $tableName
* @param string|string[] $keyname
* @param string|int|array $keyvalue
* @param string|null $keyname1
* @param string|int|null $keyvalue1
* @param string|array|null $keyname2
* @param string|int|null $keyvalue2
* @param bool $echo
* @param string $select
* @return stdClass|null
*/
public function select(
string $tableName,
$keyname,
$keyvalue,
$keyname1 = null,
$keyvalue1 = null,
$keyname2 = null,
$keyvalue2 = null,
bool $echo = false,
string $select = '*'
): ?stdClass;
/**
* @param string $tableName
* @param string|string[] $keys
* @param string|array|int $values
* @param string $select
* @param string $orderBy
* @param string|int $limit
* @return stdClass[]
* @throws \InvalidArgumentException
*/
public function selectArray(
string $tableName,
$keys,
$values,
string $select = '*',
string $orderBy = '',
$limit = ''
): array;
/**
* @param string $tableName
* @param string|string[] $keys
* @param string|int|array $values
* @param string $select
* @param string $orderBy
* @param string|int $limit
* @return stdClass[]
*/
public function selectAll(
string $tableName,
$keys,
$values,
string $select = '*',
string $orderBy = '',
$limit = ''
): array;
/**
* executes query and returns misc data
*
* @param string $stmt - Statement to be executed
* @param int $return - what should be returned.
* 1 - single fetched object
* 2 - array of fetched objects
* 3 - affected rows
* 7 - last inserted id
* 8 - fetched assoc array
* 9 - array of fetched assoc arrays
* 10 - result of querysingle
* 11 - fetch both arrays
* @param bool $echo print current stmt
* @param callable|null $fnInfo statistic callback
* @return array|stdClass[]|stdClass|PDOStatement|int|bool - 0 if fails, 1 if successful or LastInsertID
* @throws \InvalidArgumentException
*/
public function executeQuery(
string $stmt,
int $return = ReturnType::DEFAULT,
bool $echo = false,
?callable $fnInfo = null
);
/**
* @param string $stmt
* @param int $return
* @param bool $echo
* @return array|stdClass[]|stdClass|PDOStatement|int|bool
*/
public function query(string $stmt, int $return = ReturnType::DEFAULT, bool $echo = false);
/**
* executes query and returns misc data
*
* @param string $stmt - Statement to be executed
* @param array $params - An array of values with as many elements as there
* are bound parameters in the SQL statement being executed
* @param int $return - what should be returned.
* 1 - single fetched object
* 2 - array of fetched objects
* 3 - affected rows
* 7 - last inserted id
* 8 - fetched assoc array
* 9 - array of fetched assoc arrays
* 10 - result of querysingle
* 11 - fetch both arrays
* @param bool $echo print current stmt
* @param callable|null $fnInfo statistic callback
* @return array|stdClass[]|stdClass|PDOStatement|int|bool - 0 if fails, 1 if successful or LastInsertID
* @throws \InvalidArgumentException
*/
public function executeQueryPrepared(
string $stmt,
array $params,
int $return = ReturnType::DEFAULT,
bool $echo = false,
?callable $fnInfo = null
);
/**
* @param string $stmt
* @param array $params
* @param int $return
* @param bool $echo
* @param callable|null $fnInfo
* @return bool|int|object|array|Collection
*/
public function queryPrepared(
string $stmt,
array $params,
int $return = ReturnType::DEFAULT,
bool $echo = false,
?callable $fnInfo = null
);
/**
* @param string $stmt
* @param array $params
* @return array>
* @since 5.1.0
*/
public function getArrays(string $stmt, array $params = []): array;
/**
* @param string $stmt
* @param string $rowName
* @param array $params
* @return int[]
* @since 5.2.0
*/
public function getInts(string $stmt, string $rowName, array $params = []): array;
/**
* @param string $stmt
* @param array $params
* @return stdClass[]
* @since 5.1.0
*/
public function getObjects(string $stmt, array $params = []): array;
/**
* @param string $stmt
* @param array $params
* @return Collection
* @since 5.1.0
*/
public function getCollection(string $stmt, array $params = []): Collection;
/**
* @param string $stmt
* @param array $params
* @return stdClass|null
* @since 5.1.0
*/
public function getSingleObject(string $stmt, array $params = []): ?stdClass;
/**
* @param string $stmt
* @param string $rowName
* @param array $params
* @return int
* @since 5.2.0
*/
public function getSingleInt(string $stmt, string $rowName, array $params = []): int;
/**
* @param string $stmt
* @param array $params
* @return int
* @since 5.4.0
*/
public function getLastInsertedID(string $stmt, array $params = []): int;
/**
* @param string $stmt
* @param array $params
* @return array|null
* @since 5.1.0
*/
public function getSingleArray(string $stmt, array $params = []): ?array;
/**
* @param string $stmt
* @param array $params
* @return int
* @since 5.1.0
*/
public function getAffectedRows(string $stmt, array $params = []): int;
/**
* @param string $stmt
* @param array $params
* @return PDOStatement
* @since 5.1.0
*/
public function getPDOStatement(string $stmt, array $params = []): PDOStatement;
/**
* delete row from table
*
* @param string $tableName - table name
* @param string|string[] $keyname - Name of Key which should be compared
* @param string|int|array $keyvalue - Value of Key which should be compared
* @param bool $echo - true -> print statement
* @return int - -1 if fails, #affectedRows if successful
*/
public function deleteRow(string $tableName, $keyname, $keyvalue, bool $echo = false): int;
/**
* @param string $tableName
* @param string|string[] $keyname
* @param string|int|array $keyvalue
* @param bool $echo
* @return int
*/
public function delete(string $tableName, $keyname, $keyvalue, bool $echo = false): int;
/**
* executes a query and gives back the result
*
* @param string $stmt - Statement to be executed
* @return PDOStatement|int
*/
public function executeExQuery(string $stmt);
/**
* Quotes a string with outer quotes for use in a query.
*
* @param mixed $string
* @return string
*/
public function quote($string): string;
/**
* Quotes a string for use in a query.
*
* @param mixed $string
* @return string
*/
public function escape($string): string;
/**
* @return mixed
*/
public function getErrorCode();
/**
* @return array
*/
public function getError(): array;
/**
* @return string
*/
public function getErrorMessage(): string;
/**
* @return bool
*/
public function beginTransaction(): bool;
/**
* @return bool
*/
public function commit(): bool;
/**
* @return bool
*/
public function rollback(): bool;
/**
* @param string $query
* @param array $params
* @return string
*/
public function readableQuery(string $query, array $params): string;
}