Your Account
Community
Topics (Top)
More |
Top: Symfony
AJAX Auto Complete
http://feeds.feedburner.com/~r/symfony/planet/~3/264778574/
Submitted by narko
19 months, 4 weeks, 9 hours ago
I recently came across the problem of using multiple input_auto_complete_tag’s. The problem was I needed to store the ID of my first category somewhere, so I could filter the sub-categories returned in the second input_auto_complete_tag. Also, just to make things a little more complicated, there is a third input_auto_complete_tag that needs results filtered by the previous IDs...
Join discussion...
Tags: none
Symfony 1.2 redirect specific modules and actions to HTTPS (SSL)
http://feedproxy.google.com/~r/symfony/planet/~3/a80jQqxLd5E...
Submitted by narko
3 months, 2 weeks, 2 days, 10 hours ago
Post Symfony 1.1, the sfSslRequirementPlugin will no longer work.
Having needed a way to force a SSL connection for certain pages, I modified a few scripts that I found online, and created a very simple filter to handle this. This was inspired by this script, and the unacceptably poor example in the Symfony 1.2 book.
To start off with, we need to modify our app...
Join discussion...
Tags: none
Symfony and Modalbox
http://feedproxy.google.com/~r/symfony/planet/~3/ZHhGKCymHSA...
Submitted by narko
4 months, 3 weeks, 6 days, 1 hour ago
ModalBox is a cool inline-popup script that can be used to create interactive Web 2.0 dialogs. Modalbox uses the Prototype javascript framework, which is coincidentally the same that Symfony uses for its included Javascript and Ajax functions.
Unfortunately Modalbox uses a more recent version of Prototype, and there is no track on when we can...
Join discussion...
Tags: none
Querying with Propel Criteria using “NOT IN”
http://www.saynotoflash.com/archives/querying-with-propel-cr...
Submitted by narko
4 months, 3 weeks, 6 days, 13 hours ago
It's fairly common to use "NOT IN" database queries in web development.
Symfony when using Propel does not have native support for using NOT IN queries in reference to another tables. You can use NOT IN and an array, but cannot use NOT IT in reference to another table.
Here's how to use NOT IN other_table with Propel and Symfony. Let's pretend we need to run this query...
Join discussion...
Tags: none
Creating a routing-based menu in symfony 1.2, part 3: the builder
http://feedproxy.google.com/~r/symfony/planet/~3/pVG4lmo9cbo...
Submitted by narko
7 months, 3 weeks, 4 days, 9 hours ago
After defining a menu structure and describing the sfMenuItem object it’s time to show you how to pack the whole menu thing up to generate the menu with a few lines of code.
Up until now we have defined a tree structure in yaml and created a PHP class to generate menu items recursively as well as render their content. We are able to load the...
Join discussion...
Tags: none
Symfony plugin sfJabberJaxl released to the public
http://feedproxy.google.com/~r/symfony/planet/~3/TewseckgN9s...
Submitted by narko
8 months, 1 week, 2 days, 13 hours ago
As promised a few weeks ago, we are releasing to the public a Symfony plugin that let’s your Symfony based applications interact with Jabber accounts. This means that your application can communicate with IM users of Google Talk and other Jabber (XMPP based) servers.
The possibilities are endless, here are just a few ideas:
send and receive...
Join discussion...
Tags: none
Symfony's Jobeet Tutorial and my Journey Down the Rabbit Hole
http://thatsquality.com/articles/symfonys-jobeet-tutorial-an...
Submitted by weaverryan
8 months, 2 weeks ago
Working with Symfony's Jobeet tutorial is a fantastic way to learn and advance your Symfony knowledge despite your level of expertise. In this article, I touch on several highlights and discuss ways in which my own code had strayed from the central vision of Symfony.
Join discussion...
sfRestfulAuthenticationPlugin released
http://feeds.feedburner.com/~r/symfony/planet/~3/450113819/s...
Submitted by narko
12 months, 2 weeks, 4 days, 9 hours ago
I've just released my first symfony plugin named sfRestfulAuthenticationPlugin.
As you can see from it's name it's something like a port of technoweenie's restful_authentication plugin. It uses some cool new features from symfony 1.2 like the form framework and RESTful routes.
Tickets can be submitted on http://sfrestfulauthenticationplugin.lighthouseapp...
Join discussion...
Tags: none
Using a module from another project
http://feeds.feedburner.com/~r/symfony/planet/~3/417256456/
Submitted by narko
13 months, 2 weeks, 6 days, 14 hours ago
The MVC paradigm, adopted in symfony from top to bottom, brings highly decoupled components meant to be used independently.
In a symfony application, modules are flexible and allow complex manipulations like :
forwarding to another module/action and delegate request processing
rendering a module/action in isolation (like an email generation module...
Join discussion...
Tags: none
Handling several Propel packages
http://feeds.feedburner.com/~r/symfony/planet/~3/383670639/
Submitted by narko
14 months, 3 weeks, 4 days, 18 hours ago
When working on complex applications, it is mostly common to deal with several database connections. The main database is often built and adminstrated by yourself, but you sometimes need to handle external databases, probably with a read-only access.
Symfony and propel allows you to easily manage these ‘externals’ connections.
You can create several schema...
Join discussion...
Tags: none
|