/**
  * @param Mana_Seo_Model_UrlIndexer $indexer
  * @param Mana_Seo_Model_Schema $schema
  * @param array $options
  */
 public function process($indexer, $schema, $options)
 {
     if (!isset($options['store_id']) && !isset($options['schema_global_id']) && !isset($options['schema_store_id']) && !$options['reindex_all']) {
         return;
     }
     $db = $this->_getWriteAdapter();
     foreach ($schema->getJson('toolbar_url_keys') as $urlKey) {
         $urlKeyExpr = "'" . $urlKey['name'] . "'";
         $fields = array('url_key' => new Zend_Db_Expr($urlKeyExpr), 'type' => new Zend_Db_Expr("'" . Mana_Seo_Model_ParsedUrl::PARAMETER_TOOLBAR . "'"), 'is_page' => new Zend_Db_Expr('0'), 'is_parameter' => new Zend_Db_Expr('1'), 'is_attribute_value' => new Zend_Db_Expr('0'), 'is_category_value' => new Zend_Db_Expr('0'), 'schema_id' => new Zend_Db_Expr($schema->getId()), 'unique_key' => new Zend_Db_Expr($urlKeyExpr), 'internal_name' => new Zend_Db_Expr("'" . $urlKey['internal_name'] . "'"), 'position' => new Zend_Db_Expr($urlKey['position']), 'status' => new Zend_Db_Expr("'" . Mana_Seo_Model_Url::STATUS_ACTIVE . "'"), 'description' => new Zend_Db_Expr("'{$this->getDescription($urlKey['internal_name'])}'"));
         $obsoleteCondition = "(`schema_id` = " . $schema->getId() . ") AND (`is_parameter` = 1) AND (`type` = '" . Mana_Seo_Model_ParsedUrl::PARAMETER_TOOLBAR . "') AND (`internal_name` = '" . $urlKey['internal_name'] . "')";
         $this->logger()->logUrlIndexer('-----------------------------');
         $this->logger()->logUrlIndexer(get_class($this));
         $this->logger()->logUrlIndexer($schema->getId());
         $this->logger()->logUrlIndexer($obsoleteCondition);
         $this->logger()->logUrlIndexer(json_encode($options));
         $sql = $this->insert($this->getTargetTableName(), $fields);
         // run the statement
         $this->makeAllRowsObsolete($options, $obsoleteCondition);
         $db->exec($sql);
     }
 }