%PDF- %PDF-
Direktori : /var/www/cwg/wp-content/plugins/codepress-admin-columns/classes/Settings/Column/ |
Current File : //var/www/cwg/wp-content/plugins/codepress-admin-columns/classes/Settings/Column/PathScope.php |
<?php namespace AC\Settings\Column; use AC\Settings; use AC\View; class PathScope extends Settings\Column implements Settings\FormatValue { /** * @var string */ private $path_scope; protected function define_options() { return [ 'path_scope' => 'full', ]; } public function create_view() { $select = $this->create_element( 'select', 'path_scope' ) ->set_options( [ 'full' => __( 'Full Path', 'codepress-admin-columns' ), 'relative-domain' => __( 'Relative to domain', 'codepress-admin-columns' ), 'relative-uploads' => __( 'Relative to main uploads folder', 'codepress-admin-columns' ), 'local' => __( 'Local Path', 'codepress-admin-columns' ), ] ); $view = new View( [ 'label' => __( 'Path scope', 'codepress-admin-columns' ), 'tooltip' => __( 'Part of the file path to display', 'codepress-admin-columns' ), 'setting' => $select, ] ); return $view; } /** * @return string */ public function get_path_scope() { return $this->path_scope; } /** * @param string $path_scope * * @return bool */ public function set_path_scope( $path_scope ) { $this->path_scope = $path_scope; return true; } public function format( $value, $original_value ) { $file = $value; $value = ''; if ( $file ) { switch ( $this->get_path_scope() ) { case 'relative-domain' : $file = str_replace( 'https://', 'http://', $file ); $url = str_replace( 'https://', 'http://', home_url( '/' ) ); if ( strpos( $file, $url ) === 0 ) { $file = '/' . substr( $file, strlen( $url ) ); } break; case 'relative-uploads' : $file = str_replace( 'https://', 'http://', $file ); $upload_dir = wp_upload_dir(); $url = str_replace( 'https://', 'http://', $upload_dir['baseurl'] ); if ( strpos( $file, $url ) === 0 ) { $file = substr( $file, strlen( $url ) ); } break; case 'local' : $file = get_attached_file( $original_value ); break; } $value = $file; } return $value; } }