File Editor
Directories:
.. (Back)
Admin
Ajax
Asset
Context
Customizer
Debug_Bar
Dialog
Documentation
Duplicate
Editor
Image
JSON_LD
Languages
Log
Meta
Models
Onboarding
PUE
Process
Promoter
REST
Repository
Service_Providers
Shortcode
Support
Tabbed_View
Tooltip
Traits
Utils
Validator
Values
Widget
Files:
Abstract_Deactivation.php
Abstract_Plugin_Register.php
App_Shop.php
Assets.php
Assets_Pipeline.php
Autoloader.php
Cache.php
Cache_Listener.php
Changelog_Reader.php
Container.php
Context.php
Cost_Utils.php
Credits.php
Customizer.php
DB_Lock.php
Data.php
Date_Utils.php
Db.php
Debug.php
Dependency.php
Deprecation.php
Editor.php
Error.php
Exception.php
Extension.php
Extension_Loader.php
Feature_Detection.php
Field.php
Field_Conditional.php
Log.php
Main.php
Notices.php
Plugin_Meta_Links.php
Plugins.php
Plugins_API.php
Post_History.php
Post_Transient.php
Promise.php
Repository.php
Rewrite.php
Settings.php
Settings_Manager.php
Settings_Tab.php
Simple_Table.php
Support.php
Tabbed_View.php
Template.php
Template_Part_Cache.php
Templates.php
Terms.php
Timezones.php
Tracker.php
Updater.php
Validate.php
View_Helpers.php
Create New File
Create
Edit File: Changelog_Reader.php
<?php class Tribe__Changelog_Reader { protected $version_count = 3; protected $readme_file = ''; public function __construct( $version_count = 3, $readme_file = '' ) { $this->version_count = (int) $version_count; $this->readme_file = empty( $readme_file ) ? $this->default_readme_file() : $readme_file; } protected function default_readme_file() { return dirname( Tribe__Main::instance()->plugin_path ) . '/readme.txt'; } public function get_changelog() { $contents = $this->extract_changelog_section(); $lines = explode( "\n", $contents ); $sections = []; $current_section = ''; foreach ( $lines as $line ) { $line = trim( $line ); if ( substr( $line, 0, 1 ) == '=' ) { if ( count( $sections ) >= $this->version_count ) { break; } $header = trim( $line, '= ' ); $current_section = esc_html( $header ); $sections[ $current_section ] = []; } elseif ( strlen( $line ) > 0 ) { $message = trim( $line, '* ' ); $sections[ $current_section ][] = esc_html( $message ); } } return $sections; } protected function extract_changelog_section() { $contents = $this->get_readme_file_contents(); $start = strpos( $contents, '== Changelog ==' ); if ( $start === false ) { return ''; } $start += 16; // account for the length of the header $end = strpos( $contents, '==', $start ); return trim( substr( $contents, $start, $end - $start ) ); } protected function get_readme_file_contents() { return file_get_contents( $this->readme_file ); } }
Save Changes
Rename File
Rename