make update method call handling more dynamic

This commit is contained in:
John Bintz 2009-08-16 12:29:25 -04:00
parent af689daebe
commit f962cc2436
1 changed files with 5 additions and 5 deletions

View File

@ -90,11 +90,11 @@ class WhatDidTheySayAdmin {
} }
function handle_update($info) { function handle_update($info) {
foreach (array( foreach (get_class_methods($this) as $method) {
'languages', 'capabilities' if (strpos($method, "handle_update_") === 0) {
) as $method) { $result = $this->{$method}($info);
$result = $this->{"handle_update_${method}"}($info); if (!empty($result)) { $this->notices[] = $result; }
if (!empty($result)) { $this->notices[] = $result; } }
} }
} }