PATH:
home
/
lab2454c
/
bullionmils.com
/
wp-content
/
plugins
/
go-live-update-urls
/
src
/
Updaters
<?php namespace Go_Live_Update_Urls\Updaters; use Go_Live_Update_Urls\Database; /** * Base Abstract for any URL updating classes. * * @author OnPoint Plugins * @since 6.0.0 */ abstract class Updaters_Abstract { /** * The database table. * * @var string */ protected $table; /** * The database column. * * @var string */ protected $column; /** * The old URL. * * @var string */ protected $old; /** * The new URL. * * @var string */ protected $new; /** * Updaters Constructor * * @param string $table Table to update. * @param string $column Column to update. * @param string $old_url Old URL. * @param string $new_url New URL. */ public function __construct( $table, $column, $old_url, $new_url ) { $this->table = $table; $this->column = $column; $this->old = $old_url; $this->new = $new_url; } /** * The method which is called to actually run the update * using this updater. * * @return int */ abstract public function update_data(); /** * Update this table and column. * * @param string $old_url - Old URL. * @param string $new_url - New URL. * * @return int */ protected function update_column( $old_url, $new_url ) { return Database::instance()->update_column( $this->table, $this->column, $old_url, $new_url ); } /** * Count occurrences of the old URL in this table's column. * * @return int */ public function count_urls() { $old_url = static::apply_rule_to_url( $this->old ); if ( $old_url === $this->old ) { return 0; } return Database::instance()->count_column_urls( $this->table, $this->column, $old_url ); } //phpcs:disable /** * Filter the new or old url based on this particular updater's logic. * * @param string $url - Either the old or new URL. * * @return string */ public static function apply_rule_to_url( $url ) { throw new \RuntimeException( __( 'You must implement apply_rule_to_url with an override' ) ); } //phpcs:enable /** * Factory to get constructed class * * @param string $table Table to update. * @param string $column Column to update. * @param string $old_url Old URL. * @param string $new_url New URL. * * @since 5.3.0 * * @return static */ public static function factory( $table, $column, $old_url, $new_url ) { return new static( $table, $column, $old_url, $new_url ); // @phpstan-ignore-line } }
[+]
..
[-] Repo.php
[edit]
[-] Updaters_Abstract.php
[edit]
[-] Url_Encoded.php
[edit]