refactor(legacy): remove unused waveform related code (#3003)

Co-authored-by: Thomas Göttgens <tgoettgens@mail.com>
Co-authored-by: Kyle Robbertze <paddatrapper@users.noreply.github.com>
This commit is contained in:
Thomas Göttgens 2024-05-05 21:15:11 +02:00 committed by GitHub
parent a556b73d2a
commit 064c435b09
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 62 additions and 1146 deletions

View file

@ -190,14 +190,6 @@ class Application_Form_EditAudioMD extends Zend_Form
]);
$this->addElement($mood);
// Add replay gain field
$replay_gain = new Zend_Form_Element_Hidden('replay_gain');
$replay_gain->class = 'input_text replay_gain_' . $p_id;
$replay_gain->setLabel(_('Replay Gain:'))
->addDecorator('HtmlTag', ['tag' => 'div', 'style' => 'display:none'])
->removeDecorator('Label');
$this->addElement($replay_gain);
// Add bmp field
$bpm = new Zend_Form_Element_Text('bpm');
$bpm->class = 'input_text';