mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
24 lines
397 B
PHP
24 lines
397 B
PHP
<?php
|
|
|
|
require_once dirname(__FILE__) . '/../../../videos/configuration.php';
|
|
|
|
class {classname} extends ObjectYPT {
|
|
|
|
protected {columnsVars};
|
|
|
|
static function getSearchFieldsNames() {
|
|
return array({columnsString});
|
|
}
|
|
|
|
static function getTableName() {
|
|
return '{tablename}';
|
|
}
|
|
|
|
{columnsGetAll}
|
|
|
|
{columnsSet}
|
|
|
|
{columnsGet}
|
|
|
|
|
|
}
|