We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is anyone able to provide guidance on how to add the ID3 Year/Date tag? http://wheelersburgfaithbaptistchurch.com/connect/sermon-audio
I added the following code to the following file: content/mp3browser/html/HtmlNameColumn.php
protected function getCellText($data, $isAlternate) { $html = $this->addItemAnchor($data); if ($data->getTitle()) { $title = $this->wrapAnchor($data, $data->getTitle()); $html .= "<span style='font-size: .7em;'>Message Title:</span><strong>" . $title . "</strong>"; } if ($data->getArtist()) { $artist = $this->wrapAnchor($data, $data->getArtist()); $html .= "<br/><span style='font-size: .7em;'>Speaker:</span>" . $artist; } if ($data->getDate()) { $date = $this->wrapAnchor($data, $data->getDate()); $html .= "<br/><span style='font-size: .7em;'>Date:</span>" . $date; } return $html; }
If I use $date I do not get an error, if I use Year I get an error,..
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is anyone able to provide guidance on how to add the ID3 Year/Date tag?
http://wheelersburgfaithbaptistchurch.com/connect/sermon-audio
I added the following code to the following file: content/mp3browser/html/HtmlNameColumn.php
If I use $date I do not get an error, if I use Year I get an error,..
The text was updated successfully, but these errors were encountered: