PATH:
home
/
lab2454c
/
gemition.com
/
wp-content
/
plugins
/
go-live-update-urls
/
src
/
Updaters
<?php namespace Go_Live_Update_Urls\Updaters; /** * Url encoded Urls have special characters in place of typically entered * characters. This replaces standard characters with their encoded versions * during updating. * * @author OnPoint Plugins * @since 6.0.0 */ class Url_Encoded extends Updaters_Abstract { /** * Encode the URL for search and replace. * * @param string $url - Provided URL. * * @return string */ public static function apply_rule_to_url( $url ) { return rawurlencode( $url ); } /** * Update the old encoded URL with the new encoded URL if the entered * old URL is different from the encoded version. * * @return int */ public function update_data() { $old = self::apply_rule_to_url( $this->old ); if ( $old === $this->old ) { return 0; } return $this->update_column( $old, self::apply_rule_to_url( $this->new ) ); } }
[+]
..
[-] Repo.php
[edit]
[-] Updaters_Abstract.php
[edit]
[-] Url_Encoded.php
[edit]