Development

Changeset 5361

You must first sign up to be able to contribute.

Changeset 5361

Show
Ignore:
Timestamp:
10/04/07 07:24:53 (1 year ago)
Author:
fabien
Message:

fixed typo in plugin tasks (closes #2332)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/task/plugin/sfPluginInstallTask.class.php

    r5250 r5361  
    9393    $this->dispatcher->notify(new sfEvent($this, 'command.log', array($this->formatter->formatSection('plugin', sprintf('installing plugin "%s"', $arguments['name']))))); 
    9494 
    95     $this->getPuginManager()->installPlugin($arguments['name'], $options); 
     95    $this->getPluginManager()->installPlugin($arguments['name'], $options); 
    9696  } 
    9797} 
  • trunk/lib/task/plugin/sfPluginListTask.class.php

    r5250 r5361  
    4646    $this->dispatcher->notify(new sfEvent($this, 'command.log', array($this->formatter->format('Installed plugins:', 'COMMENT')))); 
    4747 
    48     foreach ($this->getPuginManager()->getInstalledPlugins() as $package) 
     48    foreach ($this->getPluginManager()->getInstalledPlugins() as $package) 
    4949    { 
    50       $alias = $this->getPuginManager()->getRegistry()->getChannel($package->getChannel())->getAlias(); 
     50      $alias = $this->getPluginManager()->getRegistry()->getChannel($package->getChannel())->getAlias(); 
    5151      $this->dispatcher->notify(new sfEvent($this, 'command.log', array(sprintf(' %-40s %10s-%-6s %s', $this->formatter->format($package->getPackage(), 'INFO'), $package->getVersion(), $package->getState() ? $package->getState() : null, $this->formatter->format(sprintf('# %s (%s)', $package->getChannel(), $alias), 'COMMENT'))))); 
    5252    } 
  • trunk/lib/task/plugin/sfPluginUninstallTask.class.php

    r5250 r5361  
    6868    $this->dispatcher->notify(new sfEvent($this, 'command.log', array($this->formatter->formatSection('plugin', sprintf('uninstalling plugin "%s"', $arguments['name']))))); 
    6969 
    70     $this->getPuginManager()->uninstallPlugin($arguments['name'], $options); 
     70    $this->getPluginManager()->uninstallPlugin($arguments['name'], $options); 
    7171  } 
    7272} 
  • trunk/lib/task/plugin/sfPluginUpgradeTask.class.php

    r5250 r5361  
    6161    $this->dispatcher->notify(new sfEvent($this, 'command.log', array($this->formatter->formatSection('plugin', sprintf('upgrading plugin "%s"', $arguments['name']))))); 
    6262 
    63     $this->getPuginManager()->installPlugin($arguments['name'], $options); 
     63    $this->getPluginManager()->installPlugin($arguments['name'], $options); 
    6464  } 
    6565}