php

Symfony 1.4 – Skip or Set the View

Metodo = Template

1. apps/frontend/modules/contenuto/templates/mypageoneSuccess


<p>Page One</p>

2. apps/frontend/modules/contenuto/templates/mypagetwoSuccess


<p>Page Two</p>

3. apps/frontend/modules/contenuto/actions/actions.class.php


<?php

class contenutoActions extends sfActions // estende la classe Symfony
{
  public function executeMypageone() // crea l'indirizzo - contenuto/mypageone
  { 
        
  }// END function
  public function executeMypagetwo() // crea l'indirizzo - contenuto/mypagetwo
  {      
  }// END function
}// END class

Point the browser at:
– http://localhost/jobeet/web/contenuto/mypageone -> render Page One
– http://localhost/jobeet/web/contenuto/mypagetwo -> render Page Two

Render dal Controller – Evitare il Template

3. apps/frontend/modules/contenuto/actions/actions.class.php


<?php

class contenutoActions extends sfActions // estende la classe Symfony
{
  public function executeMypageone() // crea l'indirizzo - contenuto/mypageone
  { 
        return $this->renderText("<html><body>Hello, World!</body></html>");
  }// END function
  public function executeMypagetwo() // crea l'indirizzo - contenuto/mypagetwo
  {      
  }// END function
}// END class

Point the browser at:
– http://localhost/jobeet/web/contenuto/mypageone -> render Hello, World!

Usare un Template Diverso

3. apps/frontend/modules/contenuto/actions/actions.class.php


<?php

class contenutoActions extends sfActions // estende la classe Symfony
{
  public function executeMypageone() // crea l'indirizzo - contenuto/mypageone
  { 
        $this->setTemplate('mypagetwo'); // nome template senza il suffisso Success
  }// END function
  public function executeMypagetwo() // crea l'indirizzo - contenuto/mypagetwo
  {      
  }// END function
}// END class

Point the browser at:
– http://localhost/jobeet/web/contenuto/mypageone -> render Page Two

Reference:
http://symfony.com/legacy/doc/gentle-introduction/1_4/it/06-inside-the-controller-layer

By |PHP, Symfony, Web Design|Commenti disabilitati su Symfony 1.4 – Skip or Set the View

Symfony 1.4.20 – Redirect – Forward

Using Plain PHP

1. apps/frontend/modules/contenuto/actions/actions.class.php


<?php

class contenutoActions extends sfActions // estende la classe Symfony
{
  public function executeRedirect() // crea l'indirizzo - contenuto/redirect
  { 
  }// END function
}// END class

2. apps/frontend/modules/contenuto/templates/redirectSuccess.php


<p>Redirect to...</p>

<?php
header("location: http://www.lucedigitale.com");
exit;
?>

3. Point the browser at: http://localhost/jobeet/web/contenuto/redirect

redirect() function External Link

1. apps/frontend/modules/contenuto/actions/actions.class.php


<?php

class contenutoActions extends sfActions // estende la classe Symfony
{
  public function executeRedirect() // crea l'indirizzo - contenuto/redirect
  { 
      return $this->redirect('http://www.google.com');
  }// END function
}// END class

2. apps/frontend/modules/contenuto/templates/redirectSuccess.php


<p>Redirect to...</p>

3. Point the browser at: http://localhost/jobeet/web/contenuto/redirect

redirect() function Internal Link

1. apps/frontend/modules/contenuto/actions/actions.class.php


<?php

class contenutoActions extends sfActions // estende la classe Symfony
{
  public function executeRedirect() // crea l'indirizzo - contenuto/redirect
  { 
      $this->redirect('contenuto/mypage');// nomemodulo/nomepagina
      // oppure sintassi alternativa
      // $this->forward('nomemodulo', 'nomepagina');

      // il codice qui sotto non verrà eseguito perchè
      // redirect e forward sollevano un sfStopException per bloccare l'esecuzione di un'azione

  }// END function
  public function executeMypage() // crea l'indirizzo - contenuto/mypage
  { 
  }// END function
}// END class

NB: redirect cambia URL nel browser, forward NON cambia URL nel browser

2. apps/frontend/modules/contenuto/templates/redirectSuccess.php


<p>Redirect to...</p>

3. Point the browser at: http://localhost/jobeet/web/contenuto/redirect
It will render http://localhost/jobeet/web/contenuto/mypage

Redirect e Forward Condizionali

Symfony ha dei metodi condizionali per snellire la scrittura del codice, in particolare:
forwardIf(), forwardUnless(), forward404If(), forward404Unless(), redirectIf() e redirectUnless().


public function executeShow(sfWebRequest $request)
{
  // Doctrine cerca un parametro id nel DB
  $article = Doctrine::getTable('Article')->find($request->getParameter('id'));
 
  // Propel cerca un parametro id nel DB
  $article = ArticlePeer::retrieveByPK($request->getParameter('id'));
 
  // se non esiste dai errore 404 di Symfony
  if (!$article)
  {
    $this->forward404();
  }

Sintassi equivalente:


public function executeShow(sfWebRequest $request)
{
  // cerca nel DB
  $article = Doctrine::getTable('Article')->find($request->getParameter('id'));
  $this->forward404If(!$article); // errore 404 se non esiste
}
 

public function executeShow(sfWebRequest $request)
{
  // Cerca nel DB
  $article = Doctrine::getTable('Article')->find($request->getParameter('id'));
  $this->forward404Unless($article); // errore 404 a meno che esista, se esiste non da errore
}

Reference:
http://www.symfony-project.org/api/1_4/sfaction

By |PHP, Symfony, Web Design|Commenti disabilitati su Symfony 1.4.20 – Redirect – Forward

Symfony 1.4 – Multi Page – Pass data to Template and Render

Creare la cartella di progetto

1. Create the folder c:\wamp64\www\jobeet

Creare la struttura di cartelle

2. Inside \jobeet folder run the command:
cmd.exe -> c:\wamp64\www\jobeet\symfony generate:project jobeet –orm=Propel

Tris create the basic folders

Creare la app frontend

3. Copy C:\wamp64\bin\php\symfony.bat to c:\wamp64\www\jobeet\

4. cmd.exe -> c:\wamp64\www\jobeet\symfony generate:app frontend

This create the base content of \apps

Creare il contenuto

5. cmd.exe -> c:\wamp64\www\jobeet\symfony generate:module frontend contenuto

Crea il contenuto per \modules

6. Per ogni nuovo modulo, Symfony crea una azione index predefinita, puntiamo il browser a:

http://localhost/jobeet/web/contenuto/index

7. Apriamo il file apps/frontend/modules/contenuto/actions/actions.class.php e scriviamo


<?php

class contenutoActions extends sfActions // estende la classe Symfony
{
  public function executeAboutme() // crea l'indirizzo - contenuto/aboutme
  { 
  }// END function
  
  public function executeContact() // crea l'indirizzo - contenuto/contact
  { 
  }// END function
}// END class

8. Creiamo apps/frontend/modules/contenuto/templates/aboutmeSuccess.php

<p>About me: I am <strong>Andrea</strong></p>

9. Creiamo apps/frontend/modules/contenuto/templates/contactSuccess.php

<p>Contact: My telephone number is 0123456789</p>

10. Puntiamo il browser a:
– http://localhost/jobeet/web/contenuto/aboutme
– http://localhost/jobeet/web/contenuto/contact

Come funziona?

I template dovranno essere nominati seguendo la regola:
aboutmeSuccess.php -> nomelink + Success

I metodi seguiranno la regola:
executeContact() -> execute + (Maiuscola)nomelink

Passare i dati al Template

1. action.class.php


<?php

class contenutoActions extends sfActions // estende la classe Symfony
{
  public function executeRandom() // crea l'indirizzo - contenuto/random
  { 
      $number = mt_rand(0, 100); // this is plain PHP
      // invia nella variabile del template numerocasuale in valore $number
      $this->numerocasuale = $number;
  }// END function
  
}// END class

2. randomSuccess.php


<p>The random number is <strong><?php echo $numerocasuale?></strong></p>

3. Puntare il browser a: http://localhost/jobeet/web/contenuto/random

Abbiamo due tipo di sintassi per assegnare le variabili da passare ai template:


    // Impostare le variabili dell'azione per passare informazioni al template
    $this->pippo = 'pluto';          // Versione breve
    $this->setVar('pippo', 'pluto'); // Versione estesa

Reference:
http://symfony.com/legacy/doc/gentle-introduction/1_4/it/04-The-Basics-of-Page-Creation

By |PHP, Symfony, Web Design|Commenti disabilitati su Symfony 1.4 – Multi Page – Pass data to Template and Render

Install Symfon y1.4.20 on WAMP and WIN7 with PEAR

PEAR installation

PEAR is a framework and distribution system for reusable PHP components.

0. Start WAMP

1. Download PEAR at http://pear.php.net/go-pear.phar

The phar extension provides a way to put entire PHP applications into a single file called a “phar” (PHP Archive) for easy distribution and installation.

2. Copy go-pear.phar into C:\wamp64\bin\php\php5.6.25

3. On Win Button type cmd.exe, RMB ‘Run as Administrator’ and navigate to C:\wamp64\bin\php\php5.6.25

4. Input in the command window: php go-pear.phar
– Are you installing a system-wide PEAR or a local copy?: leave default (system:loca) [system]
– Below is suggested file layout… (locazioni proposte per l’installazione): ENTER to go on
– Would you like to later php.ini?: Y (includerà il path per il pear)
– Enter to continue: ENTER

5. C:\wamp64\bin\php\php5.6.25 double click Pear_ENV.reg (aggiunta al registro di sistema)

PEAR is installed

Nota: per vedere il registo di sistema cliccare sul bottone di windows, in cerca programmi e file scrivere ‘regedit’

Environment variables

1. Bottone di Windows> RMB Computer> Proprietà> Impostazioni di sistema avanzate> Avanzate> Variabili d’ambiente> Variabili di sistema> Variabile Path> Modifica…>aggiungere il separatore ; e C:\wamp64\bin\php\php5.6.25

Symfony 1.4

1. On Win Button type cmd.exe, RMB ‘Run as Administrator’ and navigate to C:\wamp64\bin\php\php5.6.25

2. Type the command: pear channel-discover pear.symfony-project.com (aggiunge a PEAR il canale di Symfony)

3. Type the command: pear install symfony/symfony (scarica symfony-1.4.20.tgz)

At the end you will have the message install ok: …

4. Type: C:\wamp64\bin\php\php5.6.25\symfony -V (message: symfony version 1.4.20), l’installazione è verificata
NB: il comando symfony -V è visto da tutte le cartelle perchè il percorso è registrato

Project Creation

0. We want to create a project named ‘jobeet’

1. Create the folder c:\wamp64\www\jobeet

NB: Windows users are advised to run symfony and to setup their new project in a path which contains no spaces

2. Inside \jobeet folder run the command:
cmd.exe -> c:\wamp64\www\jobeet\symfony generate:project jobeet –orm=Propel

Symfony will create the folder structure:

apps/ Hosts all project applications -> al momento è vuota
cache/ The files cached by the framework
config/ The project configuration files
lib/ The project libraries and classes
log/ The framework log files
plugins/ The installed plugins
test/ The unit and functional test files
web/ The web root directory

NB: The generate:project task has also created a symfony shortcut in the project root directory to shorten the number of characters you have to write when running a task.

App Creation

1. Copy C:\wamp64\bin\php\symfony.bat to c:\wamp64\www\jobeet\

2. cmd.exe -> c:\wamp64\www\jobeet\symfony generate:app frontend

Symfony will create the folder structure:

apps/config
apps/i18n
apps/lib -> libraries
apps/modules -> code MVC
apps/templates

3. Set the write permission for jobeet\cache – jobeet\log – chmod 777, permit read,write,execute

RMB sulla cartella cache> Proprietà> Condivisione> Condivisione avanzata> Condividi la cartella> Autorizzazioni> Consenti> attivare Controllo completo, Modifia, Lettura

RMB sulla cartella log> Proprietà> Condivisione> Condivisione avanzata> Condividi la cartella> Autorizzazioni> Consenti> attivare Controllo completo, Modifia, Lettura

4. Set Apache
LMB over WAMP Icon> Apache> httpd.conf

Copy and paste in the end:

# -------------------------------------------------------------------------------
# Project jobeet START

# Be sure to only have this line once in your configuration
NameVirtualHost 127.0.0.1:8080

# This is the configuration for your project
Listen 127.0.0.1:8080

# 127.0.0.1:8080 da browser punta a c:\wamp64\www\jobeet\web
<VirtualHost 127.0.0.1:8080>
  DocumentRoot "c:\wamp64\www\jobeet\web"
  DirectoryIndex index.php
  <Directory "c:\wamp64\www\jobeet\web">
    AllowOverride All
    Allow from All
  </Directory>

  Alias /sf "c:\wamp64\www\jobeet\lib\vendor\symfony\data\web\sf"
  <Directory "c:\wamp64\www\jobeet\lib\vendor\symfony\data\web\sf">
    AllowOverride All
    Allow from All
  </Directory>
</VirtualHost>

# Project jobeet END
# -------------------------------------------------------------------------------

NB: The /sf alias gives you access to images and javascript files needed to properly display default symfony pages and the web debug toolbar|Web Debug Toolbar.

LMB over WAMP Icon> Restart All services

5. Open the browser and point it at: 127.0.0.1:8080 or at http://localhost/jobeet/web/index.php

If you do not see images you have to correct the code addet in httpd.conf.

Reference:
http://symfony.blog.gogo.mn/read/entry350425
https://blog.rolandl.fr/59-installer-symfony-1-4-avec-pear
http://symfony.com/legacy
http://symfony.com/legacy/doc

By |PHP, Symfony, Web Design|Commenti disabilitati su Install Symfon y1.4.20 on WAMP and WIN7 with PEAR

Symfony YAML vs XML JSON

YAML è una notazione nata nel 2001 per la serializzazione standard dei dati come XML ed è la notazione pricipale per Symfony.
YAML significa ‘YAML Ain’t Markup Language’ cioè è una notazione senza marker, infatti a differenza di XML non presenta marker, ma la struttura dei dati è mostrata tramite l’indentazione (l’utilizzo degli spazi e dell’andare a capo). Vediamo di seguito degli esempi pratici.

OGGETTO PHP


$house = array(
  'family' => array(
    'name'     => 'Doe',
    'parents'  => array('John', 'Jane'),
    'children' => array('Paul', 'Mark', 'Simone')
  ),
  'address' => array(
    'number'   => 34,
    'street'   => 'Main Street',
    'city'     => 'Nowheretown',
    'zipcode'  => '12345'
  )
);

YAML sintassi lunga


house:
  family:
    name:     Doe
    parents:
      - John
      - Jane
    children:
      - Paul
      - Mark
      - Simone
  address:
    number: 34
    street: Main Street
    city: Nowheretown
    zipcode: "12345"

YAML sentassi breve


house:
  family: { name: Doe, parents: [John, Jane], children: [Paul, Mark, Simone] }
  address: { number: 34, street: Main Street, city: Nowheretown, zipcode: "12345" }

Notare per gli array [], per gli hash {}

Un altro esempio comparativo YAMS XML JSON

XML


<people>
    <person>
        <firstName>Charles</firstName> <lastName>Schulz</lastName>
    </person>
    <person>
        <firstName>Walt</firstName> <middleName>Elias</middleName>
        <lastName>Disney</lastName>
    </person>
    <person>
        <firstName>Gary</firstName> <lastName>Larson</lastName>
    </person>
</people>

JSON


{
  “people”: [
    { “person”: {
         “firstName”: “Charles”,
         “lastName”: “Schulz”
         }
    },
    { “person”: {
         “firstName”: “Walt”,
         “middleName”: “Elias”,
         “lastName”: “Disney”
         }
    },
    { “person”: {
         “firstName”: “Gary”,
         “lastName”: “Larson”
         }
    }
  ]
}

YAML


people: 
  - 
    person: {firstName: Charles, lastName: Schulz }
  - 
    person:
       firstName: Walt
       middleName: Elias
       lastName: Disney
       characters: [ Mickey, Donald, Goofy ] 
  - 
    person:
       firstName: Gary
       lastName: Larson

By |PHP, Symfony, Web Design|Commenti disabilitati su Symfony YAML vs XML JSON