Admin
1 week ago
Ajax
1 week ago
Asset
1 week ago
Context
1 week ago
Customizer
1 week ago
Debug_Bar
1 week ago
Dialog
1 week ago
Documentation
1 week ago
Duplicate
1 week ago
Editor
1 week ago
Image
1 week ago
JSON_LD
1 week ago
Languages
1 week ago
Log
1 week ago
Meta
1 week ago
Models
1 week ago
PUE
1 week ago
Process
1 week ago
Promoter
1 week ago
REST
1 week ago
Repository
1 week ago
Service_Providers
1 week ago
Shortcode
1 week ago
Support
1 week ago
Tabbed_View
1 week ago
Tooltip
1 week ago
Traits
1 week ago
Utils
1 week ago
Validator
1 week ago
Widget
1 week ago
Abstract_Deactivation.php
1 week ago
Abstract_Plugin_Register.php
1 week ago
App_Shop.php
1 week ago
Assets.php
1 week ago
Assets_Pipeline.php
1 week ago
Autoloader.php
1 week ago
Cache.php
1 week ago
Cache_Listener.php
1 week ago
Changelog_Reader.php
1 week ago
Container.php
1 week ago
Context.php
1 week ago
Cost_Utils.php
1 week ago
Credits.php
1 week ago
Customizer.php
1 week ago
DB_Lock.php
1 week ago
Data.php
1 week ago
Date_Utils.php
1 week ago
Db.php
1 week ago
Debug.php
1 week ago
Dependency.php
1 week ago
Deprecation.php
1 week ago
Editor.php
1 week ago
Error.php
1 week ago
Exception.php
1 week ago
Extension.php
1 week ago
Extension_Loader.php
1 week ago
Feature_Detection.php
1 week ago
Field.php
1 week ago
Field_Conditional.php
1 week ago
Freemius.php
1 week ago
Log.php
1 week ago
Main.php
1 week ago
Notices.php
1 week ago
Plugin_Meta_Links.php
1 week ago
Plugins.php
1 week ago
Plugins_API.php
1 week ago
Post_History.php
1 week ago
Post_Transient.php
1 week ago
Promise.php
1 week ago
Repository.php
1 week ago
Rewrite.php
1 week ago
Settings.php
1 week ago
Settings_Manager.php
1 week ago
Settings_Tab.php
1 week ago
Simple_Table.php
1 week ago
Support.php
1 week ago
Tabbed_View.php
1 week ago
Template.php
1 week ago
Template_Factory.php
1 week ago
Template_Part_Cache.php
1 week ago
Templates.php
1 week ago
Terms.php
1 week ago
Timezones.php
1 week ago
Tracker.php
1 week ago
Updater.php
1 week ago
Validate.php
1 week ago
View_Helpers.php
1 week ago
Changelog_Reader.php
54 lines
| 1 | <?php |
| 2 | |
| 3 | class Tribe__Changelog_Reader { |
| 4 | protected $version_count = 3; |
| 5 | protected $readme_file = ''; |
| 6 | |
| 7 | public function __construct( $version_count = 3, $readme_file = '' ) { |
| 8 | $this->version_count = (int) $version_count; |
| 9 | $this->readme_file = empty( $readme_file ) ? $this->default_readme_file() : $readme_file; |
| 10 | } |
| 11 | |
| 12 | protected function default_readme_file() { |
| 13 | return dirname( Tribe__Main::instance()->plugin_path ) . '/readme.txt'; |
| 14 | } |
| 15 | |
| 16 | public function get_changelog() { |
| 17 | $contents = $this->extract_changelog_section(); |
| 18 | $lines = explode( "\n", $contents ); |
| 19 | |
| 20 | $sections = []; |
| 21 | $current_section = ''; |
| 22 | foreach ( $lines as $line ) { |
| 23 | $line = trim( $line ); |
| 24 | if ( substr( $line, 0, 1 ) == '=' ) { |
| 25 | if ( count( $sections ) >= $this->version_count ) { |
| 26 | break; |
| 27 | } |
| 28 | $header = trim( $line, '= ' ); |
| 29 | $current_section = esc_html( $header ); |
| 30 | $sections[ $current_section ] = []; |
| 31 | } elseif ( strlen( $line ) > 0 ) { |
| 32 | $message = trim( $line, '* ' ); |
| 33 | $sections[ $current_section ][] = esc_html( $message ); |
| 34 | } |
| 35 | } |
| 36 | return $sections; |
| 37 | } |
| 38 | |
| 39 | protected function extract_changelog_section() { |
| 40 | $contents = $this->get_readme_file_contents(); |
| 41 | $start = strpos( $contents, '== Changelog ==' ); |
| 42 | if ( $start === false ) { |
| 43 | return ''; |
| 44 | } |
| 45 | $start += 16; // account for the length of the header |
| 46 | $end = strpos( $contents, '==', $start ); |
| 47 | return trim( substr( $contents, $start, $end - $start ) ); |
| 48 | } |
| 49 | |
| 50 | protected function get_readme_file_contents() { |
| 51 | return file_get_contents( $this->readme_file ); |
| 52 | } |
| 53 | } |
| 54 |