Path: Home
Switch lang to RU

Download Symfony

Latest Symfony version can be downloaded here

Symfony documentation

Symfony documentation can be found here (original Symfony2 documentation here)

Symfony community

Join to the Symfony's great community here

Symfony's world latest news rss

A week of symfony #276 (9 - 15 April 2012)

0

This week, the schedule of the next Symfony Live Paris 2012 conference was announced. In addition, the documentation section was revamped with downloadable PDFs and the first of the two planned bug hunt days took place.

Continue reading
2012-04-23 09:57:44

Don't Do This At Home #5: Use where() Instead Of filterBy()

0

Can you spot the problem in the following snippet

<?php
class BookQuery extends BaseBookQuery
{
  public function filterByPublishedAtBetween($begin, $end)
  {
    return $this
      ->where('Book.PublishedAt > ?', $begin)
      ->where('Book.PublishedAt < ?', $end);
  }
}  
Firstly, this method can only be used if the query was created using the default class name. Remember: the developer can use an alias instead of the full model class name when creating a query:
<?php
$bookQuery = BookQuery::create('bookstore', 'b')
  ->where('b.Title = ?', 'War and Peace')
  ->findOne();

Continue reading
2012-04-14 12:58:34

A week of symfony #275 (2 - 8 April 2012)

0

This week, a new Symfony bug hunt day was announced in preparation for the upcoming launch of Symfony 2.1. In addition, Form component received a lot of tweaks and fixes and a new linter was introduced for Twig templates.

Continue reading
2012-04-14 12:41:16

A week of symfony #273 (19 - 25 March 2012)

0

This week Symfony project announced that Drupal 8 will adopt some of the most important Symfony components, including HttpFoundation, HttpKernel, Routing, EventDispatcher, DependencyInjection, and ClassLoader.

Continue reading
2012-03-27 09:12:02

A week of symfony #272 (12 - 18 March 2012)

0

This week Symfony 2.1 focused on session handlers refactoring, another important step in the ongoing effort to improve and refactor session management. In addition, the official Symfony documentation section was improved.

Continue reading
2012-03-21 15:36:52

Symfony 2.0.12 released

0

Symfony 2.0.12 has just been released.

The CHANGELOG has all the details about the changes and you can even have a look at the full diff.

2012-03-21 15:34:06

A week of symfony #271 (5 - 11 March 2012)

0

This week, symfony 1.4.17 was released to address some issues with the new PHP 5.4 version. In addition, a call to the community was made to help fixing some of the more than 200 pending issues of the upcoming Symfony 2.1.

Continue reading
2012-03-14 08:08:04

Propel hints. Don't Do This At Home #4: Add Indices On Foreign Key Columns

0

Can you spot the problem in the following schema?

<table name="book">
  <column name="id" type="INTEGER" required="true" primaryKey="true" autoIncrement="true" />
  <column name="title" type="VARCHAR" size="200" required="true" primaryString="true" />
  <column name="isbn" type="VARCHAR" size="24" required="true" phpName="ISBN" />
  <column name="author_id" type="INTEGER" />
  <foreign-key foreignTable="author" onDelete="setnull" onUpdate="cascade">
    <reference local="author_id" foreign="id" />
  </foreign-key>
  <index name="index_author_id">
    <index-column name="author_id"/>
  </index>
  <vendor type="mysql">
    <parameter name="Engine" value="InnoDB"/>
    <parameter name="Charset" value="utf8"/>
  </vendor>
</table>

Continue reading
2012-03-10 08:17:06

symfony 1.4.17 released

0

symfony 1.4.17 has just been released.

Here are the changes from the CHANGELOG:

  • [33363] added some tests (closes #3237, patch from Stephen.Ostrow)
  • [33362] fixed a notice on PHP 5.4 (closes #9985, patch from bshaffer)
  • [33358] fixed Notice with PHP 5.4 (closes #10003)
  • [33309] fixed error in Debug mode from sfDebug.class.php when myUser implements sfSecurityUser (closes #9996)
  • [33299] reverted [33226] because of side effects (refs #8348)
  • [33292] fixed test for PHP 5.3 (patch from pylebecq)

2012-03-10 08:13:17

A week of symfony #270 (27 February -> 4 March 2012)

0

This was a calm week for Symfony2 development. In the 2.0.x branch, a new removeListener() method was added to container-aware EventDispatcher. In the master branch, cookie session options were prefixed with cookie_ preffix and a new Redis profiler storage was added.

Continue reading
2012-03-10 08:07:43