Added sticky flag to News entity
Signed-off-by: Gergely Polonkai <polesz@w00d5t0ck.info>
This commit is contained in:
parent
38f3f404d2
commit
cf37eb1af3
29
app/DoctrineMigrations/Version20120819121254.php
Normal file
29
app/DoctrineMigrations/Version20120819121254.php
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Application\Migrations;
|
||||||
|
|
||||||
|
use Doctrine\DBAL\Migrations\AbstractMigration,
|
||||||
|
Doctrine\DBAL\Schema\Schema;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Auto-generated Migration: Please modify to your need!
|
||||||
|
*/
|
||||||
|
class Version20120819121254 extends AbstractMigration
|
||||||
|
{
|
||||||
|
public function up(Schema $schema)
|
||||||
|
{
|
||||||
|
// this up() migration is autogenerated, please modify it to your needs
|
||||||
|
$this->abortIf($this->connection->getDatabasePlatform()->getName() != "mysql");
|
||||||
|
|
||||||
|
$this->addSql("ALTER TABLE news ADD sticky TINYINT(1) NOT NULL");
|
||||||
|
$this->addSql("UPDATE news SET sticky = FALSE");
|
||||||
|
}
|
||||||
|
|
||||||
|
public function down(Schema $schema)
|
||||||
|
{
|
||||||
|
// this down() migration is autogenerated, please modify it to your needs
|
||||||
|
$this->abortIf($this->connection->getDatabasePlatform()->getName() != "mysql");
|
||||||
|
|
||||||
|
$this->addSql("ALTER TABLE news DROP sticky");
|
||||||
|
}
|
||||||
|
}
|
@ -30,7 +30,7 @@ class NewsController extends Controller
|
|||||||
$searchCriteria['public'] = true;
|
$searchCriteria['public'] = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
$news = $newsRepo->findBy($searchCriteria, array('createdAt' => 'DESC'), 4);
|
$news = $newsRepo->findBy($searchCriteria, array('sticky' => 'DESC', 'createdAt' => 'DESC'), 4);
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
'recentNews' => $news,
|
'recentNews' => $news,
|
||||||
|
@ -197,4 +197,35 @@ class News
|
|||||||
{
|
{
|
||||||
return $this->public;
|
return $this->public;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* TRUE if this News is "sticky" (it should be visible all the time)
|
||||||
|
*
|
||||||
|
* @var boolean $sticky
|
||||||
|
*
|
||||||
|
* @ORM\Column(type="boolean", nullable=false)
|
||||||
|
*/
|
||||||
|
protected $sticky;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set sticky
|
||||||
|
*
|
||||||
|
* @param boolean $sticky
|
||||||
|
* @return News
|
||||||
|
*/
|
||||||
|
public function setSticky($sticky)
|
||||||
|
{
|
||||||
|
$this->sticky = $sticky;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get sticky
|
||||||
|
*
|
||||||
|
* @return boolean
|
||||||
|
*/
|
||||||
|
public function isSticky()
|
||||||
|
{
|
||||||
|
return $this->sticky;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user