obots_noimageindex = null;
$indexable->is_robots_nosnippet = null;
$timestamps = $this->get_object_timestamps( $term_id, $term->taxonomy );
$indexable->object_published_at = $timestamps->published_at;
$indexable->object_last_modified = $timestamps->last_modified;
$indexable->version = $this->version;
return $indexable;
}
/**
* Converts the meta noindex value to the indexable value.
*
* @param string $meta_value Term meta to base the value on.
*
* @return bool|null
*/
protected function get_noindex_value( $meta_value ) {
if ( $meta_value === 'noindex' ) {
return true;
}
if ( $meta_value === 'index' ) {
return false;
}
return null;
}
/**
* Determines the focus keyword score.
*
* @param string $keyword The focus keyword that is set.
* @param int $score The score saved on the meta data.
*
* @return int|null Score to use.
*/
protected function get_keyword_score( $keyword, $score ) {
if ( empty( $keyword ) ) {
return null;
}
return $score;
}
/**
* Retrieves the lookup table.
*
* @return array Lookup table for the indexable fields.
*/
protected function get_indexable_lookup() {
return [
'wpseo_canonical' => 'canonical',
'wpseo_focuskw' => 'primary_focus_keyword',
'wpseo_title' => 'title',
'wpseo_desc' => 'description',
'wpseo_content_score' => 'readability_score',
'wpseo_inclusive_language_score' => 'inclusive_language_score',
'wpseo_bctitle' => 'breadcrumb_title',
'wpseo_opengraph-title' => 'open_graph_title',
'wpseo_opengraph-description' => 'open_graph_description',
'wpseo_opengraph-image' => 'open_graph_image',
'wpseo_opengraph-image-id' => 'open_graph_image_id',
'wpseo_twitter-title' => 'twitter_title',
'wpseo_twitter-description' => 'twitter_description',
'wpseo_twitter-image' => 'twitter_image',
'wpseo_twitter-image-id' => 'twitter_image_id',
];
}
/**
* Retrieves a meta value from the given meta data.
*
* @param string $meta_key The key to extract.
* @param array $term_meta The meta data.
*
* @return string|null The meta value.
*/
protected function get_meta_value( $meta_key, $term_meta ) {
if ( ! $term_meta || ! \array_key_exists( $meta_key, $term_meta ) ) {
return null;
}
$value = $term_meta[ $meta_key ];
if ( \is_string( $value ) && $value === '' ) {
return null;
}
return $value;
}
/**
* Finds an alternative image for the social image.
*
* @param Indexable $indexable The indexable.
*
* @return array|bool False when not found, array with data when found.
*/
protected function find_alternative_image( Indexable $indexable ) {
$content_image = $this->image->get_term_content_image( $indexable->object_id );
if ( $content_image ) {
return [
'image' => $content_image,
'source' => 'first-content-image',
];
}
return false;
}
/**
* Returns the timestamps for a given term.
*
* @param int $term_id The term ID.
* @param string $taxonomy The taxonomy.
*
* @return object An object with last_modified and published_at timestamps.
*/
protected function get_object_timestamps( $term_id, $taxonomy ) {
$post_statuses = $this->post_helper->get_public_post_statuses();
$sql = "
SELECT MAX(p.post_modified_gmt) AS last_modified, MIN(p.post_date_gmt) AS published_at
FROM {$this->wpdb->posts} AS p
INNER JOIN {$this->wpdb->term_relationships} AS term_rel
ON term_rel.object_id = p.ID
INNER JOIN {$this->wpdb->term_taxonomy} AS term_tax
ON term_tax.term_taxonomy_id = term_rel.term_taxonomy_id
AND term_tax.taxonomy = %s
AND term_tax.term_id = %d
WHERE p.post_status IN (" . \implode( ', ', \array_fill( 0, \count( $post_statuses ), '%s' ) ) . ")
AND p.post_password = ''
";
$replacements = \array_merge( [ $taxonomy, $term_id ], $post_statuses );
// phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared -- We are using wpdb prepare.
return $this->wpdb->get_row( $this->wpdb->prepare( $sql, $replacements ) );
}
}
Sicredi três vezes consecutivas Top de Marketing da ADVB-PR - Portal do Cooperativismo FinanceiroSkip to content
Informações sobre as cooperativas de crédito / instituições financeiras cooperativas
Primary Navigation Menu
Sicredi três vezes consecutivas Top de Marketing da ADVB-PR
Dirigentes do Sistema de Cooperativas de Crédito do Paraná recebem a premiação pelo melhor case na categoria mercado financeiro, em Curitiba/PR. O Sicredi recebeu o troféu de Top de Marketing da ADVB-PR na categoria mercado financeiro, em evento realizado nesta semana, no Espaço Torres, em Curitiba, Paraná.
O Sistema de Cooperativas de Crédito conquistou pela terceira vez consecutiva o mais importante prêmio de marketing do Paraná, com o case “Sicredi Seguros”, que incluiu uma campanha interna de incentivo à realização de negócios no primeiro trimestre do ano, duas ações de marketing em pontos diferentes do Estado e a atuação campeã da equipe Sicredi Racing, patrocinada pelas parceiras da Corretora de Seguros Sicredi, Icatu e Mapfre.
Para o presidente da holding Sicredi Participações, a estratégia resultou em um crescimento de 40% na comercialização de seguros no primeiro semestre de 2011, em relação ao ano anterior, superando o mercado de seguros que registrou 18% de crescimento no mesmo período.
“O prêmio é uma comprovação que estamos no caminho certo, com as cooperativas operando com estratégias assertivas e cada vez mais próximas dos associados”, declara Dasenbrock.
No setor de seguros, as cooperativas Sicredi no Paraná conquistaram resultados importantes no primeiro semestre do ano, como por exemplo, o aumento de 43% no segmento de Vida, 36% no de Automóvel e 24% no Patrimonial em relação ao ano anterior.
“Isso sem falar da forte mobilização de colaboradores e associados às cooperativas, respaldada pela força do marketing esportivo, com o acompanhamento da trajetória premiada da equipe Sicredi Racing, campeã de 2011 da categoria Mercedes-Benz Grand Challenge”.
No Paraná e São Paulo – O Sicredi atua com 39 cooperativas nos dois estados, com 393 unidades de atendimento em 324 cidades, com um volume de recursos administrados de R$ 4,9 bilhões.