Since the new design is engine agnostic, removed HandBrake from the class names.
14 lines
224 B
PHP
14 lines
224 B
PHP
<?php
|
|
|
|
class RippingCluster_WorkerLogEntry extends RippingCluster_LogEntry {
|
|
|
|
public static function initialise() {
|
|
parent::$table_name = 'worker_log';
|
|
}
|
|
|
|
};
|
|
|
|
RippingCluster_WorkerLogEntry::initialise();
|
|
|
|
?>
|