mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-14 11:16:16 +00:00
79b6f470af
Change-Id: I2326cf81e907f2a02615f96f922b66fd2806defd
33 lines
624 B
PHP
33 lines
624 B
PHP
<?php
|
|
|
|
/**
|
|
* Database mapper for EchoTargetPage model
|
|
*/
|
|
class EchoTargetPageMapper extends EchoAbstractMapper {
|
|
|
|
/**
|
|
* List of db fields used to construct an EchoTargetPage model
|
|
* @var string[]
|
|
*/
|
|
protected static $fields = [
|
|
'etp_page',
|
|
'etp_event'
|
|
];
|
|
|
|
/**
|
|
* Insert an EchoTargetPage instance into the database
|
|
*
|
|
* @param EchoTargetPage $targetPage
|
|
* @return bool
|
|
*/
|
|
public function insert( EchoTargetPage $targetPage ) {
|
|
$dbw = $this->dbFactory->getEchoDb( DB_MASTER );
|
|
|
|
$row = $targetPage->toDbArray();
|
|
|
|
$res = $dbw->insert( 'echo_target_page', $row, __METHOD__ );
|
|
|
|
return $res;
|
|
}
|
|
}
|