'wpp_current_date',
'title' => esc_html__( 'Today: ', 'wp-parsidate' ) . $current_date,
'meta' => array( 'class' => 'wpp-admin-bar-date' ),
);
$wp_admin_bar->add_node( $args );
}
add_action( 'admin_bar_menu', 'wpp_add_date_to_admin_bar', PHP_INT_MAX );
}
/**
* Style Wp-Parsidate admin bar date
*/
if ( ! function_exists( 'wpp_admin_bar_date_style' ) ) {
function wpp_admin_bar_date_style( $wp_admin_bar ) {
echo '';
}
add_action( 'admin_head', 'wpp_admin_bar_date_style' );
}
}
if (!function_exists('wpp_is_postal_code_validate')) {
function wpp_is_postal_code_validate($postalCode, $checkSum = false): bool
{
// Convert to english
$postalCode = eng_number($postalCode);
// Remove space and special character
$cleanedCode = preg_replace('/[-\s]/', '', $postalCode);
if (!preg_match("/^\d{10}$/", $cleanedCode)) {
return false;
}
// Postal code not start with zero
if ($cleanedCode[0] === '0') {
return false;
}
// Checksum Control
if ($checkSum) {
$checkDigit = (int)$cleanedCode[9];
$sum = 0;
for ($i = 0; $i < 9; $i++) {
$sum += (int)$cleanedCode[$i] * (10 - $i);
}
$remainder = $sum % 11;
$calculatedCheckDigit = ($remainder < 2) ? $remainder : 11 - $remainder;
return $checkDigit === $calculatedCheckDigit;
}
return true;
}
}
if (!function_exists('wpp_is_time_validate')) {
function wpp_is_time_validate($time, $default_seconds = '00')
{
if (!is_string($time)) {
return false;
}
if (preg_match('/^(?:2[0-3]|[01][0-9]):[0-5][0-9](?::[0-5][0-9])?$/', $time)) {
if (substr_count($time, ':') === 1) {
$time .= ':' . $default_seconds;
}
return $time;
}
return false;
}
}
if (!function_exists('wpp_date_is')) {
function wpp_date_is($dateString, $format = 'Y-m-d\TH:i:sP'): array
{
$default = [
'status' => false,
'type' => null,
'value' => ''
];
$dateString = eng_number($dateString);
$dateParts = date_parse_from_format($format, $dateString);
if ($dateParts['error_count'] > 0 || $dateParts['warning_count'] > 0) {
return $default;
}
$year = $dateParts['year'];
$month = $dateParts['month'];
$day = $dateParts['day'];
if ($year > 1900) {
if (checkdate($month, $day, $year)) {
return [
'status' => true,
'type' => 'gregorian',
'value' => $dateString
];
}
} elseif ($year < 1500) {
if ($month >= 1 && $month <= 12 && $day >= 1 && $day <= 31) {
if ($month > 6 && $day > 30) {
return $default;
} else {
return [
'status' => true,
'type' => 'jalali',
'value' => $dateString
];
}
}
}
return $default;
}
}
/*if ( wpp_is_active( 'disable_copy' ) ) {
if ( ! function_exists( 'wpp_disable_copy' ) ) {
function wpp_disable_copy() {
echo '';
}
add_action( 'wp_footer', 'wpp_disable_copy' );
}
}
if ( wpp_is_active( 'disable_right_click' ) ) {
if ( ! function_exists( 'wpp_disable_right_click' ) ) {
function wpp_disable_right_click() {
echo '';
}
add_action( 'wp_footer', 'wpp_disable_right_click' );
}
}*/