24 lines
607 B
PHP
24 lines
607 B
PHP
<?php
|
|
|
|
$main_class = 'ArticlesPhotos';
|
|
|
|
class ArticlesPhotos extends BaseAdminPhotos
|
|
{
|
|
use DatabaseCommunication;
|
|
use \KupShop\ContentBundle\Util\BlocksTrait;
|
|
|
|
protected $relation_table_name = 'photos_articles_relation';
|
|
protected $photo_type = 4;
|
|
protected $tablefield = 'id_art';
|
|
protected $photo_nametype = 'Article';
|
|
protected $copy_from = 'z článku';
|
|
protected $search_field = 'article';
|
|
|
|
public function handleMovePhoto()
|
|
{
|
|
parent::handleMovePhoto();
|
|
|
|
$this->updateBlocksPhotosPositions($this->getID(), 'articles', $this->tablefield);
|
|
}
|
|
}
|