/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/parts
/components
/tasmane-icon.php
<?php
$default = [
'acf_fc_layout' => '',
'icon' => ''
];
$params = merge_params($default, $template_args);
?>
<?php if ($params['icon'] && $params['icon'] != 'none'): ?>
<div class="tasmane_icon <?= $params['icon'] ?>">
<?php include(get_template_directory() . '/assets/img/' . $params['icon'] . '.php') ?>
</div>
<?php endif; ?>
Arguments
"include(/home/tasmanecru/www/wp-content/themes/walt-wp-theme/assets/img/462.php): failed to open stream: No such file or directory"
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/parts
/components
/tasmane-icon.php
<?php
$default = [
'acf_fc_layout' => '',
'icon' => ''
];
$params = merge_params($default, $template_args);
?>
<?php if ($params['icon'] && $params['icon'] != 'none'): ?>
<div class="tasmane_icon <?= $params['icon'] ?>">
<?php include(get_template_directory() . '/assets/img/' . $params['icon'] . '.php') ?>
</div>
<?php endif; ?>
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/app
/theme
/theme_parts.php
$cache_args[$key] = $value;
} else if ( is_object( $value ) && method_exists( $value, 'get_id' ) ) {
$cache_args[$key] = call_user_method( 'get_id', $value );
}
}
if ( ( $cache = wp_cache_get( $file, serialize( $cache_args ) ) ) !== false ) {
if ( ! empty( $template_args['return'] ) )
return $cache;
echo $cache;
return;
}
}
$file_handle = $file;
do_action( 'start_operation', 'hm_template_part::' . $file_handle );
if ( file_exists( get_stylesheet_directory() . '/' . $file . '.php' ) )
$file = get_stylesheet_directory() . '/' . $file . '.php';
elseif ( file_exists( get_template_directory() . '/' . $file . '.php' ) )
$file = get_template_directory() . '/' . $file . '.php';
ob_start();
$return = require( $file );
$data = ob_get_clean();
do_action( 'end_operation', 'hm_template_part::' . $file_handle );
if ( $cache_args ) {
wp_cache_set( $file, $data, serialize( $cache_args ), 3600 );
}
if ( ! empty( $template_args['return'] ) )
if ( $return === false )
return false;
else
return $data;
echo $data;
}
// =============================================================================
// GET CUSTOM PART
// =============================================================================
function get_custom_part($path_part , $params = []){
$path = get_template_directory() . '/parts/';
$path .= $path_part;
Arguments
"/home/tasmanecru/www/wp-content/themes/walt-wp-theme/parts/components/tasmane-icon.php"
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/app
/theme
/theme_parts.php
}
if ( ! empty( $template_args['return'] ) )
if ( $return === false )
return false;
else
return $data;
echo $data;
}
// =============================================================================
// GET CUSTOM PART
// =============================================================================
function get_custom_part($path_part , $params = []){
$path = get_template_directory() . '/parts/';
$path .= $path_part;
if(file_exists($path)){
$template = walt_template_part($path, [
'params' => $params,
'return' => true
]);
return $template;
}
return false;
}
// =============================================================================
// CUSTOM PART COMPONENT CALL
// =============================================================================
function get_component_part($component, $params = []){
$path = 'components/' . $component . '.php';
return get_custom_part($path, $params);
}
// =============================================================================
Arguments
"/home/tasmanecru/www/wp-content/themes/walt-wp-theme/parts/components/tasmane-icon.php"
array:2 [
"params" => array:1 [
"icon" => "462"
]
"return" => true
]
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/app
/theme
/theme_parts.php
if(file_exists($path)){
$template = walt_template_part($path, [
'params' => $params,
'return' => true
]);
return $template;
}
return false;
}
// =============================================================================
// CUSTOM PART COMPONENT CALL
// =============================================================================
function get_component_part($component, $params = []){
$path = 'components/' . $component . '.php';
return get_custom_part($path, $params);
}
// =============================================================================
// CUSTOM PART SECTION CALL
// =============================================================================
function get_section_part($section, $params = []) {
$path = 'sections/' . $section . '.php';
//wrapper template section
return get_custom_part($path, $params);
}
// =============================================================================
// CUSTOM PART BLOCK CALL
// =============================================================================
/**
Arguments
"components/tasmane-icon.php"
array:1 [
"icon" => "462"
]
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/parts
/blocks
/text-text.php
'overlay' => false,
'suptitle_text_1' => '',
'text_1' => [],
'suptitle_text_2' => '',
'text_2' => []
]
];
$params = merge_params($default, $template_args);
?>
<div class="block_text_text style_<?= $params['content']['style'] ?> <?= $params['content']['style'] === 'solid' ? 'beige_background' : '' ?> <?= $params['content']['icon'] != 'none' ? 'with_icon' : '' ?> <?= $params['content']['overlay'] && $params['content']['style'] != 'two_tone' ? 'overlay' : '' ?>">
<div class="isigrid gutter--xlarge gap--large">
<div class="<?= $params['content']['style'] === 'solid' ? 'col-5_md-12' : 'col-5_lg-6_md-12' ?>">
<div class="col_left_content <?= $params['content']['style'] === 'two_tone' ? 'beige_background' : '' ?>">
<?= get_component_part('text', $params['content']['text_1']) ?>
<?= get_component_part('tasmane-icon', array('icon' => $params['content']['icon'])) ?>
</div>
</div>
<div class="<?= $params['content']['style'] === 'solid' ? 'col-7_md-12' : 'col-7_lg-6_md-12' ?>">
<div class="col_right_content">
<?= get_component_part('text', $params['content']['text_2']) ?>
</div>
</div>
</div>
<?php if ($params['content']['style'] != 'none') {
echo get_component_part('tasmane-icon', array('icon' => $params['content']['icon']));
} ?>
</div>
Arguments
"tasmane-icon"
array:1 [
"icon" => "462"
]
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/app
/theme
/theme_parts.php
$cache_args[$key] = $value;
} else if ( is_object( $value ) && method_exists( $value, 'get_id' ) ) {
$cache_args[$key] = call_user_method( 'get_id', $value );
}
}
if ( ( $cache = wp_cache_get( $file, serialize( $cache_args ) ) ) !== false ) {
if ( ! empty( $template_args['return'] ) )
return $cache;
echo $cache;
return;
}
}
$file_handle = $file;
do_action( 'start_operation', 'hm_template_part::' . $file_handle );
if ( file_exists( get_stylesheet_directory() . '/' . $file . '.php' ) )
$file = get_stylesheet_directory() . '/' . $file . '.php';
elseif ( file_exists( get_template_directory() . '/' . $file . '.php' ) )
$file = get_template_directory() . '/' . $file . '.php';
ob_start();
$return = require( $file );
$data = ob_get_clean();
do_action( 'end_operation', 'hm_template_part::' . $file_handle );
if ( $cache_args ) {
wp_cache_set( $file, $data, serialize( $cache_args ), 3600 );
}
if ( ! empty( $template_args['return'] ) )
if ( $return === false )
return false;
else
return $data;
echo $data;
}
// =============================================================================
// GET CUSTOM PART
// =============================================================================
function get_custom_part($path_part , $params = []){
$path = get_template_directory() . '/parts/';
$path .= $path_part;
Arguments
"/home/tasmanecru/www/wp-content/themes/walt-wp-theme/parts/blocks/text-text.php"
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/app
/theme
/theme_parts.php
}
if ( ! empty( $template_args['return'] ) )
if ( $return === false )
return false;
else
return $data;
echo $data;
}
// =============================================================================
// GET CUSTOM PART
// =============================================================================
function get_custom_part($path_part , $params = []){
$path = get_template_directory() . '/parts/';
$path .= $path_part;
if(file_exists($path)){
$template = walt_template_part($path, [
'params' => $params,
'return' => true
]);
return $template;
}
return false;
}
// =============================================================================
// CUSTOM PART COMPONENT CALL
// =============================================================================
function get_component_part($component, $params = []){
$path = 'components/' . $component . '.php';
return get_custom_part($path, $params);
}
// =============================================================================
Arguments
"/home/tasmanecru/www/wp-content/themes/walt-wp-theme/parts/blocks/text-text.php"
array:2 [
"params" => array:3 [
"acf_fc_layout" => "text-text"
"block_options" => array:6 [
"id" => ""
"class" => ""
"wrapper" => "default"
"show" => true
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
"content" => array:5 [
"style" => "none"
"icon" => "462"
"overlay" => false
"text_1" => array:2 [
"content" => """
<h2>Un parcours sur mesure, orienté sur la pratique …</h2>\n
<ul>\n
<li>Un <strong>diagnostic d’entrée</strong> qui permet de sélectionner les candidats</li>\n
<li>Un parcours individualisé à chacun, selon l’<strong>expérience</strong> et les <strong>connaissances</strong> des candidats</li>\n
<li>Une <strong>mission</strong> à réaliser chaque semaine avec des <strong>mises en situation</strong></li>\n
<li>Des <strong>travaux pratiques</strong> ancrés dans le contexte professionnel des candidats</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"text_2" => array:2 [
"content" => """
<h2>… Et un accompagnement rapproché</h2>\n
<p> </p>\n
<ul>\n
<li>Un <strong>Live Mentor hebdomadaire</strong> collectif, animé par un expert Tasmane du Product Management</li>\n
<li>Des <strong>managers et RH</strong> de l’organisation des candidats pleinement associés au parcours</li>\n
<li>Un <strong>jury</strong> en sortie de parcours pour attester des compétences</li>\n
<li>La possibilité de passer des <strong>certifications</strong> délivré par des organismes indépendants (<a href="https://scaledagileframework.com/">SAFe</a>, <a href="https://www.scrum.org/open-assessments/product-owner-open">Scrum.org</a>, …)</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
]
"return" => true
]
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/app
/theme
/theme_parts.php
// =============================================================================
// CUSTOM PART BLOCK CALL
// =============================================================================
/**
* get_block_part
*
* @param mixed $block
* @param mixed $params
* @return void
*/
function get_block_part($block, $params = []) {
$path = 'blocks/' . $block . '.php';
//wrapper template section
return get_custom_part($path, $params);
}
// =============================================================================
// CUSTOM CARD PART
// =============================================================================
function get_card_part($post_type, $params = []) {
$path = 'cards/card-' . $post_type . '.php';
return get_custom_part($path, $params);
}
// =============================================================================
// CUSTOM ARCHIVE PART
// =============================================================================
function get_archive_part($post_type, $params = []) {
Arguments
"blocks/text-text.php"
array:3 [
"acf_fc_layout" => "text-text"
"block_options" => array:6 [
"id" => ""
"class" => ""
"wrapper" => "default"
"show" => true
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
"content" => array:5 [
"style" => "none"
"icon" => "462"
"overlay" => false
"text_1" => array:2 [
"content" => """
<h2>Un parcours sur mesure, orienté sur la pratique …</h2>\n
<ul>\n
<li>Un <strong>diagnostic d’entrée</strong> qui permet de sélectionner les candidats</li>\n
<li>Un parcours individualisé à chacun, selon l’<strong>expérience</strong> et les <strong>connaissances</strong> des candidats</li>\n
<li>Une <strong>mission</strong> à réaliser chaque semaine avec des <strong>mises en situation</strong></li>\n
<li>Des <strong>travaux pratiques</strong> ancrés dans le contexte professionnel des candidats</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"text_2" => array:2 [
"content" => """
<h2>… Et un accompagnement rapproché</h2>\n
<p> </p>\n
<ul>\n
<li>Un <strong>Live Mentor hebdomadaire</strong> collectif, animé par un expert Tasmane du Product Management</li>\n
<li>Des <strong>managers et RH</strong> de l’organisation des candidats pleinement associés au parcours</li>\n
<li>Un <strong>jury</strong> en sortie de parcours pour attester des compétences</li>\n
<li>La possibilité de passer des <strong>certifications</strong> délivré par des organismes indépendants (<a href="https://scaledagileframework.com/">SAFe</a>, <a href="https://www.scrum.org/open-assessments/product-owner-open">Scrum.org</a>, …)</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
]
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/parts
/blocks
/block.php
'id' => '',
'class' => '',
'wrapper' => 'default',
'show' => true,
'padding_height_top' => 'medium',
'padding_height_bottom' => 'medium',
]
];
$params = merge_params($default, $template_args);
?>
<?php if($params['acf_fc_layout'] !== '' && $params['block_options']['show']): ?>
<div
<?php if($params['block_options']['id'] != ''): ?>
id="<?= $params['block_options']['id'] ?>"
<?php endif ?>
class="block <?= 'wrapper_' . $params['block_options']['wrapper'] ?> <?= 'paddingh_top--' . $params['block_options']['padding_height_top']?> <?= 'paddingh_bottom--' . $params['block_options']['padding_height_bottom']?>">
<?= get_block_part($params['acf_fc_layout'], $params); ?>
</div>
<?php endif ?>
Arguments
"text-text"
array:3 [
"acf_fc_layout" => "text-text"
"block_options" => array:6 [
"id" => ""
"class" => ""
"wrapper" => "default"
"show" => true
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
"content" => array:5 [
"style" => "none"
"icon" => "462"
"overlay" => false
"text_1" => array:2 [
"content" => """
<h2>Un parcours sur mesure, orienté sur la pratique …</h2>\n
<ul>\n
<li>Un <strong>diagnostic d’entrée</strong> qui permet de sélectionner les candidats</li>\n
<li>Un parcours individualisé à chacun, selon l’<strong>expérience</strong> et les <strong>connaissances</strong> des candidats</li>\n
<li>Une <strong>mission</strong> à réaliser chaque semaine avec des <strong>mises en situation</strong></li>\n
<li>Des <strong>travaux pratiques</strong> ancrés dans le contexte professionnel des candidats</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"text_2" => array:2 [
"content" => """
<h2>… Et un accompagnement rapproché</h2>\n
<p> </p>\n
<ul>\n
<li>Un <strong>Live Mentor hebdomadaire</strong> collectif, animé par un expert Tasmane du Product Management</li>\n
<li>Des <strong>managers et RH</strong> de l’organisation des candidats pleinement associés au parcours</li>\n
<li>Un <strong>jury</strong> en sortie de parcours pour attester des compétences</li>\n
<li>La possibilité de passer des <strong>certifications</strong> délivré par des organismes indépendants (<a href="https://scaledagileframework.com/">SAFe</a>, <a href="https://www.scrum.org/open-assessments/product-owner-open">Scrum.org</a>, …)</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
]
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/app
/theme
/theme_parts.php
$cache_args[$key] = $value;
} else if ( is_object( $value ) && method_exists( $value, 'get_id' ) ) {
$cache_args[$key] = call_user_method( 'get_id', $value );
}
}
if ( ( $cache = wp_cache_get( $file, serialize( $cache_args ) ) ) !== false ) {
if ( ! empty( $template_args['return'] ) )
return $cache;
echo $cache;
return;
}
}
$file_handle = $file;
do_action( 'start_operation', 'hm_template_part::' . $file_handle );
if ( file_exists( get_stylesheet_directory() . '/' . $file . '.php' ) )
$file = get_stylesheet_directory() . '/' . $file . '.php';
elseif ( file_exists( get_template_directory() . '/' . $file . '.php' ) )
$file = get_template_directory() . '/' . $file . '.php';
ob_start();
$return = require( $file );
$data = ob_get_clean();
do_action( 'end_operation', 'hm_template_part::' . $file_handle );
if ( $cache_args ) {
wp_cache_set( $file, $data, serialize( $cache_args ), 3600 );
}
if ( ! empty( $template_args['return'] ) )
if ( $return === false )
return false;
else
return $data;
echo $data;
}
// =============================================================================
// GET CUSTOM PART
// =============================================================================
function get_custom_part($path_part , $params = []){
$path = get_template_directory() . '/parts/';
$path .= $path_part;
Arguments
"/home/tasmanecru/www/wp-content/themes/walt-wp-theme/parts/blocks/block.php"
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/app
/theme
/theme_parts.php
}
if ( ! empty( $template_args['return'] ) )
if ( $return === false )
return false;
else
return $data;
echo $data;
}
// =============================================================================
// GET CUSTOM PART
// =============================================================================
function get_custom_part($path_part , $params = []){
$path = get_template_directory() . '/parts/';
$path .= $path_part;
if(file_exists($path)){
$template = walt_template_part($path, [
'params' => $params,
'return' => true
]);
return $template;
}
return false;
}
// =============================================================================
// CUSTOM PART COMPONENT CALL
// =============================================================================
function get_component_part($component, $params = []){
$path = 'components/' . $component . '.php';
return get_custom_part($path, $params);
}
// =============================================================================
Arguments
"/home/tasmanecru/www/wp-content/themes/walt-wp-theme/parts/blocks/block.php"
array:2 [
"params" => array:3 [
"acf_fc_layout" => "text-text"
"content" => array:5 [
"style" => "none"
"icon" => "462"
"overlay" => false
"text_1" => array:2 [
"content" => """
<h2>Un parcours sur mesure, orienté sur la pratique …</h2>\n
<ul>\n
<li>Un <strong>diagnostic d’entrée</strong> qui permet de sélectionner les candidats</li>\n
<li>Un parcours individualisé à chacun, selon l’<strong>expérience</strong> et les <strong>connaissances</strong> des candidats</li>\n
<li>Une <strong>mission</strong> à réaliser chaque semaine avec des <strong>mises en situation</strong></li>\n
<li>Des <strong>travaux pratiques</strong> ancrés dans le contexte professionnel des candidats</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"text_2" => array:2 [
"content" => """
<h2>… Et un accompagnement rapproché</h2>\n
<p> </p>\n
<ul>\n
<li>Un <strong>Live Mentor hebdomadaire</strong> collectif, animé par un expert Tasmane du Product Management</li>\n
<li>Des <strong>managers et RH</strong> de l’organisation des candidats pleinement associés au parcours</li>\n
<li>Un <strong>jury</strong> en sortie de parcours pour attester des compétences</li>\n
<li>La possibilité de passer des <strong>certifications</strong> délivré par des organismes indépendants (<a href="https://scaledagileframework.com/">SAFe</a>, <a href="https://www.scrum.org/open-assessments/product-owner-open">Scrum.org</a>, …)</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
]
"return" => true
]
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/app
/theme
/theme_parts.php
// =============================================================================
// CUSTOM PART BLOCK CALL
// =============================================================================
/**
* get_block_part
*
* @param mixed $block
* @param mixed $params
* @return void
*/
function get_block_part($block, $params = []) {
$path = 'blocks/' . $block . '.php';
//wrapper template section
return get_custom_part($path, $params);
}
// =============================================================================
// CUSTOM CARD PART
// =============================================================================
function get_card_part($post_type, $params = []) {
$path = 'cards/card-' . $post_type . '.php';
return get_custom_part($path, $params);
}
// =============================================================================
// CUSTOM ARCHIVE PART
// =============================================================================
function get_archive_part($post_type, $params = []) {
Arguments
"blocks/block.php"
array:3 [
"acf_fc_layout" => "text-text"
"content" => array:5 [
"style" => "none"
"icon" => "462"
"overlay" => false
"text_1" => array:2 [
"content" => """
<h2>Un parcours sur mesure, orienté sur la pratique …</h2>\n
<ul>\n
<li>Un <strong>diagnostic d’entrée</strong> qui permet de sélectionner les candidats</li>\n
<li>Un parcours individualisé à chacun, selon l’<strong>expérience</strong> et les <strong>connaissances</strong> des candidats</li>\n
<li>Une <strong>mission</strong> à réaliser chaque semaine avec des <strong>mises en situation</strong></li>\n
<li>Des <strong>travaux pratiques</strong> ancrés dans le contexte professionnel des candidats</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"text_2" => array:2 [
"content" => """
<h2>… Et un accompagnement rapproché</h2>\n
<p> </p>\n
<ul>\n
<li>Un <strong>Live Mentor hebdomadaire</strong> collectif, animé par un expert Tasmane du Product Management</li>\n
<li>Des <strong>managers et RH</strong> de l’organisation des candidats pleinement associés au parcours</li>\n
<li>Un <strong>jury</strong> en sortie de parcours pour attester des compétences</li>\n
<li>La possibilité de passer des <strong>certifications</strong> délivré par des organismes indépendants (<a href="https://scaledagileframework.com/">SAFe</a>, <a href="https://www.scrum.org/open-assessments/product-owner-open">Scrum.org</a>, …)</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
]
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/parts
/sections
/row.php
'id' => '',
'class' => '',
'show' => true,
]
];
$params = merge_params($default, $template_args);
?>
<?php if(is_array($params['blocks']) && count($params['blocks']) && $params['row_options']['show']): ?>
<section
<?php if($params['row_options']['id'] != ''): ?>
id="<?= $params['row_options']['id'] ?>"
<?php endif ?>
class="row <?= $params['row_options']['class'] ?>">
<div class="isigrid gap--none">
<?php foreach($params['blocks'] as $block): ?>
<div class="col-12">
<?= get_block_part('block', $block); ?>
</div>
<?php endforeach ?>
</div>
</section>
<?php endif ?>
Arguments
"block"
array:3 [
"acf_fc_layout" => "text-text"
"content" => array:5 [
"style" => "none"
"icon" => "462"
"overlay" => false
"text_1" => array:2 [
"content" => """
<h2>Un parcours sur mesure, orienté sur la pratique …</h2>\n
<ul>\n
<li>Un <strong>diagnostic d’entrée</strong> qui permet de sélectionner les candidats</li>\n
<li>Un parcours individualisé à chacun, selon l’<strong>expérience</strong> et les <strong>connaissances</strong> des candidats</li>\n
<li>Une <strong>mission</strong> à réaliser chaque semaine avec des <strong>mises en situation</strong></li>\n
<li>Des <strong>travaux pratiques</strong> ancrés dans le contexte professionnel des candidats</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"text_2" => array:2 [
"content" => """
<h2>… Et un accompagnement rapproché</h2>\n
<p> </p>\n
<ul>\n
<li>Un <strong>Live Mentor hebdomadaire</strong> collectif, animé par un expert Tasmane du Product Management</li>\n
<li>Des <strong>managers et RH</strong> de l’organisation des candidats pleinement associés au parcours</li>\n
<li>Un <strong>jury</strong> en sortie de parcours pour attester des compétences</li>\n
<li>La possibilité de passer des <strong>certifications</strong> délivré par des organismes indépendants (<a href="https://scaledagileframework.com/">SAFe</a>, <a href="https://www.scrum.org/open-assessments/product-owner-open">Scrum.org</a>, …)</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
]
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/app
/theme
/theme_parts.php
$cache_args[$key] = $value;
} else if ( is_object( $value ) && method_exists( $value, 'get_id' ) ) {
$cache_args[$key] = call_user_method( 'get_id', $value );
}
}
if ( ( $cache = wp_cache_get( $file, serialize( $cache_args ) ) ) !== false ) {
if ( ! empty( $template_args['return'] ) )
return $cache;
echo $cache;
return;
}
}
$file_handle = $file;
do_action( 'start_operation', 'hm_template_part::' . $file_handle );
if ( file_exists( get_stylesheet_directory() . '/' . $file . '.php' ) )
$file = get_stylesheet_directory() . '/' . $file . '.php';
elseif ( file_exists( get_template_directory() . '/' . $file . '.php' ) )
$file = get_template_directory() . '/' . $file . '.php';
ob_start();
$return = require( $file );
$data = ob_get_clean();
do_action( 'end_operation', 'hm_template_part::' . $file_handle );
if ( $cache_args ) {
wp_cache_set( $file, $data, serialize( $cache_args ), 3600 );
}
if ( ! empty( $template_args['return'] ) )
if ( $return === false )
return false;
else
return $data;
echo $data;
}
// =============================================================================
// GET CUSTOM PART
// =============================================================================
function get_custom_part($path_part , $params = []){
$path = get_template_directory() . '/parts/';
$path .= $path_part;
Arguments
"/home/tasmanecru/www/wp-content/themes/walt-wp-theme/parts/sections/row.php"
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/app
/theme
/theme_parts.php
}
if ( ! empty( $template_args['return'] ) )
if ( $return === false )
return false;
else
return $data;
echo $data;
}
// =============================================================================
// GET CUSTOM PART
// =============================================================================
function get_custom_part($path_part , $params = []){
$path = get_template_directory() . '/parts/';
$path .= $path_part;
if(file_exists($path)){
$template = walt_template_part($path, [
'params' => $params,
'return' => true
]);
return $template;
}
return false;
}
// =============================================================================
// CUSTOM PART COMPONENT CALL
// =============================================================================
function get_component_part($component, $params = []){
$path = 'components/' . $component . '.php';
return get_custom_part($path, $params);
}
// =============================================================================
Arguments
"/home/tasmanecru/www/wp-content/themes/walt-wp-theme/parts/sections/row.php"
array:2 [
"params" => array:2 [
"blocks" => array:6 [
0 => array:3 [
"acf_fc_layout" => "promote"
"content" => array:4 [
"display_leaves" => true
"display_compass" => true
"block_overlay" => false
"text" => array:2 [
"content" => """
<h2 style="text-align: center;">Product Management Academy par Tasmane : La Formation Produit d’Excellence</h2>\n
<p style="text-align: center;">Tasmane a observé l’efficacité croissante du <a href="https://www.tasmane.com/expertises/agilite/">mode produit</a> au sein de nombreuses organisations. Cependant, pour maximiser son impact, il est essentiel de disposer de Product Owners bien coordonnés et compétents. Le recrutement dans ce domaine peut s’avérer complexe, et le marché de la formation ne répond pas toujours aux attentes pour ces profils spécifiques.</p>\n
<p style="text-align: center;">C’est dans ce contexte que Tasmane a développé avec son partenaire <a href="https://upskilling.com/">Upskilling</a> une approche moderne et novatrice de la formation produit, élaborée par des Product Owners et Product Managers expérimentés : la Product Management Academy.</p>\n
<p style="text-align: center;">Découvrez comment notre programme de formation répond aux besoins spécifiques du mode produit, préparant les professionnels à exceller dans leurs rôles de Product Owners.</p>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "medium"
"padding_height_bottom" => "small"
]
]
1 => array:3 [
"acf_fc_layout" => "text-images"
"content" => array:7 [
"reverse" => false
"images_type" => "slider_type"
"image_shape" => false
"image_display" => false
"text" => array:2 [
"content" => """
<h2>Des bénéfices pour les stagiaires, et pour les organisations</h2>\n
<ul>\n
<li>Je me renforce selon mes besoins : pas de perte de temps (et d’argent) !</li>\n
<li>Je pratique dans mon contexte d’emploi : dans 2 semaines, je n’aurai pas oublié !</li>\n
<li>Je partage mon expérience avec des pairs au sein de mon entreprise</li>\n
<li>Mon manager est impliqué dans mon apprentissage : il m’aide à lever les barrières de l’environnement professionnel si nécessaire</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"image" => false
"slider" => array:3 [
0 => 5548
1 => 5547
2 => 5546
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
]
2 => array:3 [
"acf_fc_layout" => "temoignages"
"content" => array:2 [
"testimonials" => array:2 [
0 => 5552
1 => 5554
]
"display_leaves" => false
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "small"
]
]
3 => array:3 [
"acf_fc_layout" => "text-text"
"content" => array:5 [
"style" => "none"
"icon" => "462"
"overlay" => false
"text_1" => array:2 [
"content" => """
<h2>Un parcours sur mesure, orienté sur la pratique …</h2>\n
<ul>\n
<li>Un <strong>diagnostic d’entrée</strong> qui permet de sélectionner les candidats</li>\n
<li>Un parcours individualisé à chacun, selon l’<strong>expérience</strong> et les <strong>connaissances</strong> des candidats</li>\n
<li>Une <strong>mission</strong> à réaliser chaque semaine avec des <strong>mises en situation</strong></li>\n
<li>Des <strong>travaux pratiques</strong> ancrés dans le contexte professionnel des candidats</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"text_2" => array:2 [
"content" => """
<h2>… Et un accompagnement rapproché</h2>\n
<p> </p>\n
<ul>\n
<li>Un <strong>Live Mentor hebdomadaire</strong> collectif, animé par un expert Tasmane du Product Management</li>\n
<li>Des <strong>managers et RH</strong> de l’organisation des candidats pleinement associés au parcours</li>\n
<li>Un <strong>jury</strong> en sortie de parcours pour attester des compétences</li>\n
<li>La possibilité de passer des <strong>certifications</strong> délivré par des organismes indépendants (<a href="https://scaledagileframework.com/">SAFe</a>, <a href="https://www.scrum.org/open-assessments/product-owner-open">Scrum.org</a>, …)</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
]
4 => array:3 [
"acf_fc_layout" => "list"
"content" => array:4 [
"background_color" => "white"
"display_numbers" => false
"text" => "<h2>Une offre modulaire pour vous offrir une formation produit sur mesure</h2>\n"
"elements" => array:5 [
0 => array:1 [
"text" => """
<h3><strong>Product Vision & Strategy</strong></h3>\n
<p>Formaliser, entretenir et partager une stratégie produit répondant à une équation économique réaliste alignée avec les ambitions de l’entreprise, aux problématiques des utilisateurs.</p>\n
<p><em>Durée : Environ 6 semaines</em></p>\n
"""
]
1 => array:1 [
"text" => """
<h3><strong>Product Tools</strong></h3>\n
<p>Initialiser son outillage pour mieux gérer le cycle de vie de votre produit et gagner en efficacité.</p>\n
<p><em>Durée : Environ 3 semaines</em></p>\n
"""
]
2 => array:1 [
"text" => """
<h3><strong>Product Design</strong></h3>\n
<p>Faire émerger des réponses (solutions) focalisées sur l’essentiel, alignées avec les ambitions de l’entreprise et les contraintes équipes (architecture, sécurité, positionnement de marque, …).</p>\n
<p><em>Durée : Environ 4 semaines</em></p>\n
"""
]
3 => array:1 [
"text" => """
<h3><strong>Posture & Leadership du Product Owner</strong></h3>\n
<p>Développer son leadership et adopter la bonne posture de Product Owner : des outils et des techniques pour soi et pour l’équipe avec le renforcement d’un état d’esprit tourné vers l’amélioration continue de l’équipe, des techniques de communication impactante dans le respect de sa personnalité , des clés pour mettre en mouvement, responsabiliser et animer les équipes, et les bases du management 3.0 pour créer et entretenir un climat sain de dialogue, d’ouverture, d’engagement et de créativité.</p>\n
<p><em>Durée : Environ 1 semaine</em></p>\n
"""
]
4 => array:1 [
"text" => """
<h3><strong>Et bien plus encore</strong></h3>\n
<p><strong>Product Basics, Product Discovery, Product Growth, Product Delivery</strong> : notre équipe est là pour accompagner les candidats sur toutes les thématiques dont ils nécessitent et les intégrer à leur formation produit sur mesure.</p>\n
"""
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "large"
"padding_height_top" => "large"
"padding_height_bottom" => "small"
]
]
5 => array:3 [
"acf_fc_layout" => "call-to-action"
"content" => array:5 [
"icon" => 462
"text" => """
<h3>Vous souhaitez en savoir plus ?</h3>\n
<p>Tarification, modalités de formation, contenus spécifiques, … Notre équipe sera heureuse de répondre à toutes vos questions !</p>\n
"""
"link" => array:3 [
"title" => "Prendre contact avec l'équipe"
"url" => "mailto:agility-and-product-management@tasmane.com?subject=[Product%20Management%20Academy]"
"target" => ""
]
"block_overlay" => false
"display_leaves" => true
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "expend"
"padding_height_top" => "none"
"padding_height_bottom" => "none"
]
]
]
"row_options" => array:3 [
"show" => true
"id" => ""
"class" => ""
]
]
"return" => true
]
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/app
/theme
/theme_parts.php
// =============================================================================
function get_component_part($component, $params = []){
$path = 'components/' . $component . '.php';
return get_custom_part($path, $params);
}
// =============================================================================
// CUSTOM PART SECTION CALL
// =============================================================================
function get_section_part($section, $params = []) {
$path = 'sections/' . $section . '.php';
//wrapper template section
return get_custom_part($path, $params);
}
// =============================================================================
// CUSTOM PART BLOCK CALL
// =============================================================================
/**
* get_block_part
*
* @param mixed $block
* @param mixed $params
* @return void
*/
function get_block_part($block, $params = []) {
$path = 'blocks/' . $block . '.php';
//wrapper template section
Arguments
"sections/row.php"
array:2 [
"blocks" => array:6 [
0 => array:3 [
"acf_fc_layout" => "promote"
"content" => array:4 [
"display_leaves" => true
"display_compass" => true
"block_overlay" => false
"text" => array:2 [
"content" => """
<h2 style="text-align: center;">Product Management Academy par Tasmane : La Formation Produit d’Excellence</h2>\n
<p style="text-align: center;">Tasmane a observé l’efficacité croissante du <a href="https://www.tasmane.com/expertises/agilite/">mode produit</a> au sein de nombreuses organisations. Cependant, pour maximiser son impact, il est essentiel de disposer de Product Owners bien coordonnés et compétents. Le recrutement dans ce domaine peut s’avérer complexe, et le marché de la formation ne répond pas toujours aux attentes pour ces profils spécifiques.</p>\n
<p style="text-align: center;">C’est dans ce contexte que Tasmane a développé avec son partenaire <a href="https://upskilling.com/">Upskilling</a> une approche moderne et novatrice de la formation produit, élaborée par des Product Owners et Product Managers expérimentés : la Product Management Academy.</p>\n
<p style="text-align: center;">Découvrez comment notre programme de formation répond aux besoins spécifiques du mode produit, préparant les professionnels à exceller dans leurs rôles de Product Owners.</p>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "medium"
"padding_height_bottom" => "small"
]
]
1 => array:3 [
"acf_fc_layout" => "text-images"
"content" => array:7 [
"reverse" => false
"images_type" => "slider_type"
"image_shape" => false
"image_display" => false
"text" => array:2 [
"content" => """
<h2>Des bénéfices pour les stagiaires, et pour les organisations</h2>\n
<ul>\n
<li>Je me renforce selon mes besoins : pas de perte de temps (et d’argent) !</li>\n
<li>Je pratique dans mon contexte d’emploi : dans 2 semaines, je n’aurai pas oublié !</li>\n
<li>Je partage mon expérience avec des pairs au sein de mon entreprise</li>\n
<li>Mon manager est impliqué dans mon apprentissage : il m’aide à lever les barrières de l’environnement professionnel si nécessaire</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"image" => false
"slider" => array:3 [
0 => 5548
1 => 5547
2 => 5546
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
]
2 => array:3 [
"acf_fc_layout" => "temoignages"
"content" => array:2 [
"testimonials" => array:2 [
0 => 5552
1 => 5554
]
"display_leaves" => false
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "small"
]
]
3 => array:3 [
"acf_fc_layout" => "text-text"
"content" => array:5 [
"style" => "none"
"icon" => "462"
"overlay" => false
"text_1" => array:2 [
"content" => """
<h2>Un parcours sur mesure, orienté sur la pratique …</h2>\n
<ul>\n
<li>Un <strong>diagnostic d’entrée</strong> qui permet de sélectionner les candidats</li>\n
<li>Un parcours individualisé à chacun, selon l’<strong>expérience</strong> et les <strong>connaissances</strong> des candidats</li>\n
<li>Une <strong>mission</strong> à réaliser chaque semaine avec des <strong>mises en situation</strong></li>\n
<li>Des <strong>travaux pratiques</strong> ancrés dans le contexte professionnel des candidats</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"text_2" => array:2 [
"content" => """
<h2>… Et un accompagnement rapproché</h2>\n
<p> </p>\n
<ul>\n
<li>Un <strong>Live Mentor hebdomadaire</strong> collectif, animé par un expert Tasmane du Product Management</li>\n
<li>Des <strong>managers et RH</strong> de l’organisation des candidats pleinement associés au parcours</li>\n
<li>Un <strong>jury</strong> en sortie de parcours pour attester des compétences</li>\n
<li>La possibilité de passer des <strong>certifications</strong> délivré par des organismes indépendants (<a href="https://scaledagileframework.com/">SAFe</a>, <a href="https://www.scrum.org/open-assessments/product-owner-open">Scrum.org</a>, …)</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
]
4 => array:3 [
"acf_fc_layout" => "list"
"content" => array:4 [
"background_color" => "white"
"display_numbers" => false
"text" => "<h2>Une offre modulaire pour vous offrir une formation produit sur mesure</h2>\n"
"elements" => array:5 [
0 => array:1 [
"text" => """
<h3><strong>Product Vision & Strategy</strong></h3>\n
<p>Formaliser, entretenir et partager une stratégie produit répondant à une équation économique réaliste alignée avec les ambitions de l’entreprise, aux problématiques des utilisateurs.</p>\n
<p><em>Durée : Environ 6 semaines</em></p>\n
"""
]
1 => array:1 [
"text" => """
<h3><strong>Product Tools</strong></h3>\n
<p>Initialiser son outillage pour mieux gérer le cycle de vie de votre produit et gagner en efficacité.</p>\n
<p><em>Durée : Environ 3 semaines</em></p>\n
"""
]
2 => array:1 [
"text" => """
<h3><strong>Product Design</strong></h3>\n
<p>Faire émerger des réponses (solutions) focalisées sur l’essentiel, alignées avec les ambitions de l’entreprise et les contraintes équipes (architecture, sécurité, positionnement de marque, …).</p>\n
<p><em>Durée : Environ 4 semaines</em></p>\n
"""
]
3 => array:1 [
"text" => """
<h3><strong>Posture & Leadership du Product Owner</strong></h3>\n
<p>Développer son leadership et adopter la bonne posture de Product Owner : des outils et des techniques pour soi et pour l’équipe avec le renforcement d’un état d’esprit tourné vers l’amélioration continue de l’équipe, des techniques de communication impactante dans le respect de sa personnalité , des clés pour mettre en mouvement, responsabiliser et animer les équipes, et les bases du management 3.0 pour créer et entretenir un climat sain de dialogue, d’ouverture, d’engagement et de créativité.</p>\n
<p><em>Durée : Environ 1 semaine</em></p>\n
"""
]
4 => array:1 [
"text" => """
<h3><strong>Et bien plus encore</strong></h3>\n
<p><strong>Product Basics, Product Discovery, Product Growth, Product Delivery</strong> : notre équipe est là pour accompagner les candidats sur toutes les thématiques dont ils nécessitent et les intégrer à leur formation produit sur mesure.</p>\n
"""
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "large"
"padding_height_top" => "large"
"padding_height_bottom" => "small"
]
]
5 => array:3 [
"acf_fc_layout" => "call-to-action"
"content" => array:5 [
"icon" => 462
"text" => """
<h3>Vous souhaitez en savoir plus ?</h3>\n
<p>Tarification, modalités de formation, contenus spécifiques, … Notre équipe sera heureuse de répondre à toutes vos questions !</p>\n
"""
"link" => array:3 [
"title" => "Prendre contact avec l'équipe"
"url" => "mailto:agility-and-product-management@tasmane.com?subject=[Product%20Management%20Academy]"
"target" => ""
]
"block_overlay" => false
"display_leaves" => true
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "expend"
"padding_height_top" => "none"
"padding_height_bottom" => "none"
]
]
]
"row_options" => array:3 [
"show" => true
"id" => ""
"class" => ""
]
]
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/parts
/sections
/flexible.php
<?php
$default = [
'rows' => []
];
$params = merge_params($default, $template_args);
?>
<?php if(is_array($params['rows']) && count($params['rows'])): ?>
<div id="content_page" class="section flexible">
<?php foreach($params['rows'] as $row): ?>
<?= get_section_part('row', $row); ?>
<?php endforeach ?>
</div>
<?php endif ?>
Arguments
"row"
array:2 [
"blocks" => array:6 [
0 => array:3 [
"acf_fc_layout" => "promote"
"content" => array:4 [
"display_leaves" => true
"display_compass" => true
"block_overlay" => false
"text" => array:2 [
"content" => """
<h2 style="text-align: center;">Product Management Academy par Tasmane : La Formation Produit d’Excellence</h2>\n
<p style="text-align: center;">Tasmane a observé l’efficacité croissante du <a href="https://www.tasmane.com/expertises/agilite/">mode produit</a> au sein de nombreuses organisations. Cependant, pour maximiser son impact, il est essentiel de disposer de Product Owners bien coordonnés et compétents. Le recrutement dans ce domaine peut s’avérer complexe, et le marché de la formation ne répond pas toujours aux attentes pour ces profils spécifiques.</p>\n
<p style="text-align: center;">C’est dans ce contexte que Tasmane a développé avec son partenaire <a href="https://upskilling.com/">Upskilling</a> une approche moderne et novatrice de la formation produit, élaborée par des Product Owners et Product Managers expérimentés : la Product Management Academy.</p>\n
<p style="text-align: center;">Découvrez comment notre programme de formation répond aux besoins spécifiques du mode produit, préparant les professionnels à exceller dans leurs rôles de Product Owners.</p>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "medium"
"padding_height_bottom" => "small"
]
]
1 => array:3 [
"acf_fc_layout" => "text-images"
"content" => array:7 [
"reverse" => false
"images_type" => "slider_type"
"image_shape" => false
"image_display" => false
"text" => array:2 [
"content" => """
<h2>Des bénéfices pour les stagiaires, et pour les organisations</h2>\n
<ul>\n
<li>Je me renforce selon mes besoins : pas de perte de temps (et d’argent) !</li>\n
<li>Je pratique dans mon contexte d’emploi : dans 2 semaines, je n’aurai pas oublié !</li>\n
<li>Je partage mon expérience avec des pairs au sein de mon entreprise</li>\n
<li>Mon manager est impliqué dans mon apprentissage : il m’aide à lever les barrières de l’environnement professionnel si nécessaire</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"image" => false
"slider" => array:3 [
0 => 5548
1 => 5547
2 => 5546
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
]
2 => array:3 [
"acf_fc_layout" => "temoignages"
"content" => array:2 [
"testimonials" => array:2 [
0 => 5552
1 => 5554
]
"display_leaves" => false
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "small"
]
]
3 => array:3 [
"acf_fc_layout" => "text-text"
"content" => array:5 [
"style" => "none"
"icon" => "462"
"overlay" => false
"text_1" => array:2 [
"content" => """
<h2>Un parcours sur mesure, orienté sur la pratique …</h2>\n
<ul>\n
<li>Un <strong>diagnostic d’entrée</strong> qui permet de sélectionner les candidats</li>\n
<li>Un parcours individualisé à chacun, selon l’<strong>expérience</strong> et les <strong>connaissances</strong> des candidats</li>\n
<li>Une <strong>mission</strong> à réaliser chaque semaine avec des <strong>mises en situation</strong></li>\n
<li>Des <strong>travaux pratiques</strong> ancrés dans le contexte professionnel des candidats</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"text_2" => array:2 [
"content" => """
<h2>… Et un accompagnement rapproché</h2>\n
<p> </p>\n
<ul>\n
<li>Un <strong>Live Mentor hebdomadaire</strong> collectif, animé par un expert Tasmane du Product Management</li>\n
<li>Des <strong>managers et RH</strong> de l’organisation des candidats pleinement associés au parcours</li>\n
<li>Un <strong>jury</strong> en sortie de parcours pour attester des compétences</li>\n
<li>La possibilité de passer des <strong>certifications</strong> délivré par des organismes indépendants (<a href="https://scaledagileframework.com/">SAFe</a>, <a href="https://www.scrum.org/open-assessments/product-owner-open">Scrum.org</a>, …)</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
]
4 => array:3 [
"acf_fc_layout" => "list"
"content" => array:4 [
"background_color" => "white"
"display_numbers" => false
"text" => "<h2>Une offre modulaire pour vous offrir une formation produit sur mesure</h2>\n"
"elements" => array:5 [
0 => array:1 [
"text" => """
<h3><strong>Product Vision & Strategy</strong></h3>\n
<p>Formaliser, entretenir et partager une stratégie produit répondant à une équation économique réaliste alignée avec les ambitions de l’entreprise, aux problématiques des utilisateurs.</p>\n
<p><em>Durée : Environ 6 semaines</em></p>\n
"""
]
1 => array:1 [
"text" => """
<h3><strong>Product Tools</strong></h3>\n
<p>Initialiser son outillage pour mieux gérer le cycle de vie de votre produit et gagner en efficacité.</p>\n
<p><em>Durée : Environ 3 semaines</em></p>\n
"""
]
2 => array:1 [
"text" => """
<h3><strong>Product Design</strong></h3>\n
<p>Faire émerger des réponses (solutions) focalisées sur l’essentiel, alignées avec les ambitions de l’entreprise et les contraintes équipes (architecture, sécurité, positionnement de marque, …).</p>\n
<p><em>Durée : Environ 4 semaines</em></p>\n
"""
]
3 => array:1 [
"text" => """
<h3><strong>Posture & Leadership du Product Owner</strong></h3>\n
<p>Développer son leadership et adopter la bonne posture de Product Owner : des outils et des techniques pour soi et pour l’équipe avec le renforcement d’un état d’esprit tourné vers l’amélioration continue de l’équipe, des techniques de communication impactante dans le respect de sa personnalité , des clés pour mettre en mouvement, responsabiliser et animer les équipes, et les bases du management 3.0 pour créer et entretenir un climat sain de dialogue, d’ouverture, d’engagement et de créativité.</p>\n
<p><em>Durée : Environ 1 semaine</em></p>\n
"""
]
4 => array:1 [
"text" => """
<h3><strong>Et bien plus encore</strong></h3>\n
<p><strong>Product Basics, Product Discovery, Product Growth, Product Delivery</strong> : notre équipe est là pour accompagner les candidats sur toutes les thématiques dont ils nécessitent et les intégrer à leur formation produit sur mesure.</p>\n
"""
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "large"
"padding_height_top" => "large"
"padding_height_bottom" => "small"
]
]
5 => array:3 [
"acf_fc_layout" => "call-to-action"
"content" => array:5 [
"icon" => 462
"text" => """
<h3>Vous souhaitez en savoir plus ?</h3>\n
<p>Tarification, modalités de formation, contenus spécifiques, … Notre équipe sera heureuse de répondre à toutes vos questions !</p>\n
"""
"link" => array:3 [
"title" => "Prendre contact avec l'équipe"
"url" => "mailto:agility-and-product-management@tasmane.com?subject=[Product%20Management%20Academy]"
"target" => ""
]
"block_overlay" => false
"display_leaves" => true
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "expend"
"padding_height_top" => "none"
"padding_height_bottom" => "none"
]
]
]
"row_options" => array:3 [
"show" => true
"id" => ""
"class" => ""
]
]
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/app
/theme
/theme_parts.php
$cache_args[$key] = $value;
} else if ( is_object( $value ) && method_exists( $value, 'get_id' ) ) {
$cache_args[$key] = call_user_method( 'get_id', $value );
}
}
if ( ( $cache = wp_cache_get( $file, serialize( $cache_args ) ) ) !== false ) {
if ( ! empty( $template_args['return'] ) )
return $cache;
echo $cache;
return;
}
}
$file_handle = $file;
do_action( 'start_operation', 'hm_template_part::' . $file_handle );
if ( file_exists( get_stylesheet_directory() . '/' . $file . '.php' ) )
$file = get_stylesheet_directory() . '/' . $file . '.php';
elseif ( file_exists( get_template_directory() . '/' . $file . '.php' ) )
$file = get_template_directory() . '/' . $file . '.php';
ob_start();
$return = require( $file );
$data = ob_get_clean();
do_action( 'end_operation', 'hm_template_part::' . $file_handle );
if ( $cache_args ) {
wp_cache_set( $file, $data, serialize( $cache_args ), 3600 );
}
if ( ! empty( $template_args['return'] ) )
if ( $return === false )
return false;
else
return $data;
echo $data;
}
// =============================================================================
// GET CUSTOM PART
// =============================================================================
function get_custom_part($path_part , $params = []){
$path = get_template_directory() . '/parts/';
$path .= $path_part;
Arguments
"/home/tasmanecru/www/wp-content/themes/walt-wp-theme/parts/sections/flexible.php"
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/app
/theme
/theme_parts.php
}
if ( ! empty( $template_args['return'] ) )
if ( $return === false )
return false;
else
return $data;
echo $data;
}
// =============================================================================
// GET CUSTOM PART
// =============================================================================
function get_custom_part($path_part , $params = []){
$path = get_template_directory() . '/parts/';
$path .= $path_part;
if(file_exists($path)){
$template = walt_template_part($path, [
'params' => $params,
'return' => true
]);
return $template;
}
return false;
}
// =============================================================================
// CUSTOM PART COMPONENT CALL
// =============================================================================
function get_component_part($component, $params = []){
$path = 'components/' . $component . '.php';
return get_custom_part($path, $params);
}
// =============================================================================
Arguments
"/home/tasmanecru/www/wp-content/themes/walt-wp-theme/parts/sections/flexible.php"
array:2 [
"params" => array:1 [
"rows" => array:1 [
0 => array:2 [
"blocks" => array:6 [
0 => array:3 [
"acf_fc_layout" => "promote"
"content" => array:4 [
"display_leaves" => true
"display_compass" => true
"block_overlay" => false
"text" => array:2 [
"content" => """
<h2 style="text-align: center;">Product Management Academy par Tasmane : La Formation Produit d’Excellence</h2>\n
<p style="text-align: center;">Tasmane a observé l’efficacité croissante du <a href="https://www.tasmane.com/expertises/agilite/">mode produit</a> au sein de nombreuses organisations. Cependant, pour maximiser son impact, il est essentiel de disposer de Product Owners bien coordonnés et compétents. Le recrutement dans ce domaine peut s’avérer complexe, et le marché de la formation ne répond pas toujours aux attentes pour ces profils spécifiques.</p>\n
<p style="text-align: center;">C’est dans ce contexte que Tasmane a développé avec son partenaire <a href="https://upskilling.com/">Upskilling</a> une approche moderne et novatrice de la formation produit, élaborée par des Product Owners et Product Managers expérimentés : la Product Management Academy.</p>\n
<p style="text-align: center;">Découvrez comment notre programme de formation répond aux besoins spécifiques du mode produit, préparant les professionnels à exceller dans leurs rôles de Product Owners.</p>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "medium"
"padding_height_bottom" => "small"
]
]
1 => array:3 [
"acf_fc_layout" => "text-images"
"content" => array:7 [
"reverse" => false
"images_type" => "slider_type"
"image_shape" => false
"image_display" => false
"text" => array:2 [
"content" => """
<h2>Des bénéfices pour les stagiaires, et pour les organisations</h2>\n
<ul>\n
<li>Je me renforce selon mes besoins : pas de perte de temps (et d’argent) !</li>\n
<li>Je pratique dans mon contexte d’emploi : dans 2 semaines, je n’aurai pas oublié !</li>\n
<li>Je partage mon expérience avec des pairs au sein de mon entreprise</li>\n
<li>Mon manager est impliqué dans mon apprentissage : il m’aide à lever les barrières de l’environnement professionnel si nécessaire</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"image" => false
"slider" => array:3 [
0 => 5548
1 => 5547
2 => 5546
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
]
2 => array:3 [
"acf_fc_layout" => "temoignages"
"content" => array:2 [
"testimonials" => array:2 [
0 => 5552
1 => 5554
]
"display_leaves" => false
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "small"
]
]
3 => array:3 [
"acf_fc_layout" => "text-text"
"content" => array:5 [
"style" => "none"
"icon" => "462"
"overlay" => false
"text_1" => array:2 [
"content" => """
<h2>Un parcours sur mesure, orienté sur la pratique …</h2>\n
<ul>\n
<li>Un <strong>diagnostic d’entrée</strong> qui permet de sélectionner les candidats</li>\n
<li>Un parcours individualisé à chacun, selon l’<strong>expérience</strong> et les <strong>connaissances</strong> des candidats</li>\n
<li>Une <strong>mission</strong> à réaliser chaque semaine avec des <strong>mises en situation</strong></li>\n
<li>Des <strong>travaux pratiques</strong> ancrés dans le contexte professionnel des candidats</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"text_2" => array:2 [
"content" => """
<h2>… Et un accompagnement rapproché</h2>\n
<p> </p>\n
<ul>\n
<li>Un <strong>Live Mentor hebdomadaire</strong> collectif, animé par un expert Tasmane du Product Management</li>\n
<li>Des <strong>managers et RH</strong> de l’organisation des candidats pleinement associés au parcours</li>\n
<li>Un <strong>jury</strong> en sortie de parcours pour attester des compétences</li>\n
<li>La possibilité de passer des <strong>certifications</strong> délivré par des organismes indépendants (<a href="https://scaledagileframework.com/">SAFe</a>, <a href="https://www.scrum.org/open-assessments/product-owner-open">Scrum.org</a>, …)</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
]
4 => array:3 [
"acf_fc_layout" => "list"
"content" => array:4 [
"background_color" => "white"
"display_numbers" => false
"text" => "<h2>Une offre modulaire pour vous offrir une formation produit sur mesure</h2>\n"
"elements" => array:5 [
0 => array:1 [
"text" => """
<h3><strong>Product Vision & Strategy</strong></h3>\n
<p>Formaliser, entretenir et partager une stratégie produit répondant à une équation économique réaliste alignée avec les ambitions de l’entreprise, aux problématiques des utilisateurs.</p>\n
<p><em>Durée : Environ 6 semaines</em></p>\n
"""
]
1 => array:1 [
"text" => """
<h3><strong>Product Tools</strong></h3>\n
<p>Initialiser son outillage pour mieux gérer le cycle de vie de votre produit et gagner en efficacité.</p>\n
<p><em>Durée : Environ 3 semaines</em></p>\n
"""
]
2 => array:1 [
"text" => """
<h3><strong>Product Design</strong></h3>\n
<p>Faire émerger des réponses (solutions) focalisées sur l’essentiel, alignées avec les ambitions de l’entreprise et les contraintes équipes (architecture, sécurité, positionnement de marque, …).</p>\n
<p><em>Durée : Environ 4 semaines</em></p>\n
"""
]
3 => array:1 [
"text" => """
<h3><strong>Posture & Leadership du Product Owner</strong></h3>\n
<p>Développer son leadership et adopter la bonne posture de Product Owner : des outils et des techniques pour soi et pour l’équipe avec le renforcement d’un état d’esprit tourné vers l’amélioration continue de l’équipe, des techniques de communication impactante dans le respect de sa personnalité , des clés pour mettre en mouvement, responsabiliser et animer les équipes, et les bases du management 3.0 pour créer et entretenir un climat sain de dialogue, d’ouverture, d’engagement et de créativité.</p>\n
<p><em>Durée : Environ 1 semaine</em></p>\n
"""
]
4 => array:1 [
"text" => """
<h3><strong>Et bien plus encore</strong></h3>\n
<p><strong>Product Basics, Product Discovery, Product Growth, Product Delivery</strong> : notre équipe est là pour accompagner les candidats sur toutes les thématiques dont ils nécessitent et les intégrer à leur formation produit sur mesure.</p>\n
"""
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "large"
"padding_height_top" => "large"
"padding_height_bottom" => "small"
]
]
5 => array:3 [
"acf_fc_layout" => "call-to-action"
"content" => array:5 [
"icon" => 462
"text" => """
<h3>Vous souhaitez en savoir plus ?</h3>\n
<p>Tarification, modalités de formation, contenus spécifiques, … Notre équipe sera heureuse de répondre à toutes vos questions !</p>\n
"""
"link" => array:3 [
"title" => "Prendre contact avec l'équipe"
"url" => "mailto:agility-and-product-management@tasmane.com?subject=[Product%20Management%20Academy]"
"target" => ""
]
"block_overlay" => false
"display_leaves" => true
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "expend"
"padding_height_top" => "none"
"padding_height_bottom" => "none"
]
]
]
"row_options" => array:3 [
"show" => true
"id" => ""
"class" => ""
]
]
]
]
"return" => true
]
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/app
/theme
/theme_parts.php
// =============================================================================
function get_component_part($component, $params = []){
$path = 'components/' . $component . '.php';
return get_custom_part($path, $params);
}
// =============================================================================
// CUSTOM PART SECTION CALL
// =============================================================================
function get_section_part($section, $params = []) {
$path = 'sections/' . $section . '.php';
//wrapper template section
return get_custom_part($path, $params);
}
// =============================================================================
// CUSTOM PART BLOCK CALL
// =============================================================================
/**
* get_block_part
*
* @param mixed $block
* @param mixed $params
* @return void
*/
function get_block_part($block, $params = []) {
$path = 'blocks/' . $block . '.php';
//wrapper template section
Arguments
"sections/flexible.php"
array:1 [
"rows" => array:1 [
0 => array:2 [
"blocks" => array:6 [
0 => array:3 [
"acf_fc_layout" => "promote"
"content" => array:4 [
"display_leaves" => true
"display_compass" => true
"block_overlay" => false
"text" => array:2 [
"content" => """
<h2 style="text-align: center;">Product Management Academy par Tasmane : La Formation Produit d’Excellence</h2>\n
<p style="text-align: center;">Tasmane a observé l’efficacité croissante du <a href="https://www.tasmane.com/expertises/agilite/">mode produit</a> au sein de nombreuses organisations. Cependant, pour maximiser son impact, il est essentiel de disposer de Product Owners bien coordonnés et compétents. Le recrutement dans ce domaine peut s’avérer complexe, et le marché de la formation ne répond pas toujours aux attentes pour ces profils spécifiques.</p>\n
<p style="text-align: center;">C’est dans ce contexte que Tasmane a développé avec son partenaire <a href="https://upskilling.com/">Upskilling</a> une approche moderne et novatrice de la formation produit, élaborée par des Product Owners et Product Managers expérimentés : la Product Management Academy.</p>\n
<p style="text-align: center;">Découvrez comment notre programme de formation répond aux besoins spécifiques du mode produit, préparant les professionnels à exceller dans leurs rôles de Product Owners.</p>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "medium"
"padding_height_bottom" => "small"
]
]
1 => array:3 [
"acf_fc_layout" => "text-images"
"content" => array:7 [
"reverse" => false
"images_type" => "slider_type"
"image_shape" => false
"image_display" => false
"text" => array:2 [
"content" => """
<h2>Des bénéfices pour les stagiaires, et pour les organisations</h2>\n
<ul>\n
<li>Je me renforce selon mes besoins : pas de perte de temps (et d’argent) !</li>\n
<li>Je pratique dans mon contexte d’emploi : dans 2 semaines, je n’aurai pas oublié !</li>\n
<li>Je partage mon expérience avec des pairs au sein de mon entreprise</li>\n
<li>Mon manager est impliqué dans mon apprentissage : il m’aide à lever les barrières de l’environnement professionnel si nécessaire</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"image" => false
"slider" => array:3 [
0 => 5548
1 => 5547
2 => 5546
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
]
2 => array:3 [
"acf_fc_layout" => "temoignages"
"content" => array:2 [
"testimonials" => array:2 [
0 => 5552
1 => 5554
]
"display_leaves" => false
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "small"
]
]
3 => array:3 [
"acf_fc_layout" => "text-text"
"content" => array:5 [
"style" => "none"
"icon" => "462"
"overlay" => false
"text_1" => array:2 [
"content" => """
<h2>Un parcours sur mesure, orienté sur la pratique …</h2>\n
<ul>\n
<li>Un <strong>diagnostic d’entrée</strong> qui permet de sélectionner les candidats</li>\n
<li>Un parcours individualisé à chacun, selon l’<strong>expérience</strong> et les <strong>connaissances</strong> des candidats</li>\n
<li>Une <strong>mission</strong> à réaliser chaque semaine avec des <strong>mises en situation</strong></li>\n
<li>Des <strong>travaux pratiques</strong> ancrés dans le contexte professionnel des candidats</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"text_2" => array:2 [
"content" => """
<h2>… Et un accompagnement rapproché</h2>\n
<p> </p>\n
<ul>\n
<li>Un <strong>Live Mentor hebdomadaire</strong> collectif, animé par un expert Tasmane du Product Management</li>\n
<li>Des <strong>managers et RH</strong> de l’organisation des candidats pleinement associés au parcours</li>\n
<li>Un <strong>jury</strong> en sortie de parcours pour attester des compétences</li>\n
<li>La possibilité de passer des <strong>certifications</strong> délivré par des organismes indépendants (<a href="https://scaledagileframework.com/">SAFe</a>, <a href="https://www.scrum.org/open-assessments/product-owner-open">Scrum.org</a>, …)</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
]
4 => array:3 [
"acf_fc_layout" => "list"
"content" => array:4 [
"background_color" => "white"
"display_numbers" => false
"text" => "<h2>Une offre modulaire pour vous offrir une formation produit sur mesure</h2>\n"
"elements" => array:5 [
0 => array:1 [
"text" => """
<h3><strong>Product Vision & Strategy</strong></h3>\n
<p>Formaliser, entretenir et partager une stratégie produit répondant à une équation économique réaliste alignée avec les ambitions de l’entreprise, aux problématiques des utilisateurs.</p>\n
<p><em>Durée : Environ 6 semaines</em></p>\n
"""
]
1 => array:1 [
"text" => """
<h3><strong>Product Tools</strong></h3>\n
<p>Initialiser son outillage pour mieux gérer le cycle de vie de votre produit et gagner en efficacité.</p>\n
<p><em>Durée : Environ 3 semaines</em></p>\n
"""
]
2 => array:1 [
"text" => """
<h3><strong>Product Design</strong></h3>\n
<p>Faire émerger des réponses (solutions) focalisées sur l’essentiel, alignées avec les ambitions de l’entreprise et les contraintes équipes (architecture, sécurité, positionnement de marque, …).</p>\n
<p><em>Durée : Environ 4 semaines</em></p>\n
"""
]
3 => array:1 [
"text" => """
<h3><strong>Posture & Leadership du Product Owner</strong></h3>\n
<p>Développer son leadership et adopter la bonne posture de Product Owner : des outils et des techniques pour soi et pour l’équipe avec le renforcement d’un état d’esprit tourné vers l’amélioration continue de l’équipe, des techniques de communication impactante dans le respect de sa personnalité , des clés pour mettre en mouvement, responsabiliser et animer les équipes, et les bases du management 3.0 pour créer et entretenir un climat sain de dialogue, d’ouverture, d’engagement et de créativité.</p>\n
<p><em>Durée : Environ 1 semaine</em></p>\n
"""
]
4 => array:1 [
"text" => """
<h3><strong>Et bien plus encore</strong></h3>\n
<p><strong>Product Basics, Product Discovery, Product Growth, Product Delivery</strong> : notre équipe est là pour accompagner les candidats sur toutes les thématiques dont ils nécessitent et les intégrer à leur formation produit sur mesure.</p>\n
"""
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "large"
"padding_height_top" => "large"
"padding_height_bottom" => "small"
]
]
5 => array:3 [
"acf_fc_layout" => "call-to-action"
"content" => array:5 [
"icon" => 462
"text" => """
<h3>Vous souhaitez en savoir plus ?</h3>\n
<p>Tarification, modalités de formation, contenus spécifiques, … Notre équipe sera heureuse de répondre à toutes vos questions !</p>\n
"""
"link" => array:3 [
"title" => "Prendre contact avec l'équipe"
"url" => "mailto:agility-and-product-management@tasmane.com?subject=[Product%20Management%20Academy]"
"target" => ""
]
"block_overlay" => false
"display_leaves" => true
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "expend"
"padding_height_top" => "none"
"padding_height_bottom" => "none"
]
]
]
"row_options" => array:3 [
"show" => true
"id" => ""
"class" => ""
]
]
]
]
/home
/tasmanecru
/www
/wp-content
/themes
/walt-wp-theme
/template-flexible.php
$hero_type = 'hero-home';
} else {
$hero_type = 'hero';
}
$rows = get_field('rows', $post->ID);
?>
<!-- HEADER -->
<?php get_header(); ?>
<!-- HERO -->
<?= get_section_part($hero_type, $hero); ?>
<!-- FLEXIBLE -->
<?= get_section_part('flexible', ['rows' => $rows]); ?>
<!-- FOOTER -->
<?php get_footer(); ?>
Arguments
"flexible"
array:1 [
"rows" => array:1 [
0 => array:2 [
"blocks" => array:6 [
0 => array:3 [
"acf_fc_layout" => "promote"
"content" => array:4 [
"display_leaves" => true
"display_compass" => true
"block_overlay" => false
"text" => array:2 [
"content" => """
<h2 style="text-align: center;">Product Management Academy par Tasmane : La Formation Produit d’Excellence</h2>\n
<p style="text-align: center;">Tasmane a observé l’efficacité croissante du <a href="https://www.tasmane.com/expertises/agilite/">mode produit</a> au sein de nombreuses organisations. Cependant, pour maximiser son impact, il est essentiel de disposer de Product Owners bien coordonnés et compétents. Le recrutement dans ce domaine peut s’avérer complexe, et le marché de la formation ne répond pas toujours aux attentes pour ces profils spécifiques.</p>\n
<p style="text-align: center;">C’est dans ce contexte que Tasmane a développé avec son partenaire <a href="https://upskilling.com/">Upskilling</a> une approche moderne et novatrice de la formation produit, élaborée par des Product Owners et Product Managers expérimentés : la Product Management Academy.</p>\n
<p style="text-align: center;">Découvrez comment notre programme de formation répond aux besoins spécifiques du mode produit, préparant les professionnels à exceller dans leurs rôles de Product Owners.</p>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "medium"
"padding_height_bottom" => "small"
]
]
1 => array:3 [
"acf_fc_layout" => "text-images"
"content" => array:7 [
"reverse" => false
"images_type" => "slider_type"
"image_shape" => false
"image_display" => false
"text" => array:2 [
"content" => """
<h2>Des bénéfices pour les stagiaires, et pour les organisations</h2>\n
<ul>\n
<li>Je me renforce selon mes besoins : pas de perte de temps (et d’argent) !</li>\n
<li>Je pratique dans mon contexte d’emploi : dans 2 semaines, je n’aurai pas oublié !</li>\n
<li>Je partage mon expérience avec des pairs au sein de mon entreprise</li>\n
<li>Mon manager est impliqué dans mon apprentissage : il m’aide à lever les barrières de l’environnement professionnel si nécessaire</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"image" => false
"slider" => array:3 [
0 => 5548
1 => 5547
2 => 5546
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
]
2 => array:3 [
"acf_fc_layout" => "temoignages"
"content" => array:2 [
"testimonials" => array:2 [
0 => 5552
1 => 5554
]
"display_leaves" => false
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "small"
]
]
3 => array:3 [
"acf_fc_layout" => "text-text"
"content" => array:5 [
"style" => "none"
"icon" => "462"
"overlay" => false
"text_1" => array:2 [
"content" => """
<h2>Un parcours sur mesure, orienté sur la pratique …</h2>\n
<ul>\n
<li>Un <strong>diagnostic d’entrée</strong> qui permet de sélectionner les candidats</li>\n
<li>Un parcours individualisé à chacun, selon l’<strong>expérience</strong> et les <strong>connaissances</strong> des candidats</li>\n
<li>Une <strong>mission</strong> à réaliser chaque semaine avec des <strong>mises en situation</strong></li>\n
<li>Des <strong>travaux pratiques</strong> ancrés dans le contexte professionnel des candidats</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
"text_2" => array:2 [
"content" => """
<h2>… Et un accompagnement rapproché</h2>\n
<p> </p>\n
<ul>\n
<li>Un <strong>Live Mentor hebdomadaire</strong> collectif, animé par un expert Tasmane du Product Management</li>\n
<li>Des <strong>managers et RH</strong> de l’organisation des candidats pleinement associés au parcours</li>\n
<li>Un <strong>jury</strong> en sortie de parcours pour attester des compétences</li>\n
<li>La possibilité de passer des <strong>certifications</strong> délivré par des organismes indépendants (<a href="https://scaledagileframework.com/">SAFe</a>, <a href="https://www.scrum.org/open-assessments/product-owner-open">Scrum.org</a>, …)</li>\n
</ul>\n
"""
"group_buttons" => array:2 [
"position" => "left"
"buttons" => false
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "default"
"padding_height_top" => "small"
"padding_height_bottom" => "large"
]
]
4 => array:3 [
"acf_fc_layout" => "list"
"content" => array:4 [
"background_color" => "white"
"display_numbers" => false
"text" => "<h2>Une offre modulaire pour vous offrir une formation produit sur mesure</h2>\n"
"elements" => array:5 [
0 => array:1 [
"text" => """
<h3><strong>Product Vision & Strategy</strong></h3>\n
<p>Formaliser, entretenir et partager une stratégie produit répondant à une équation économique réaliste alignée avec les ambitions de l’entreprise, aux problématiques des utilisateurs.</p>\n
<p><em>Durée : Environ 6 semaines</em></p>\n
"""
]
1 => array:1 [
"text" => """
<h3><strong>Product Tools</strong></h3>\n
<p>Initialiser son outillage pour mieux gérer le cycle de vie de votre produit et gagner en efficacité.</p>\n
<p><em>Durée : Environ 3 semaines</em></p>\n
"""
]
2 => array:1 [
"text" => """
<h3><strong>Product Design</strong></h3>\n
<p>Faire émerger des réponses (solutions) focalisées sur l’essentiel, alignées avec les ambitions de l’entreprise et les contraintes équipes (architecture, sécurité, positionnement de marque, …).</p>\n
<p><em>Durée : Environ 4 semaines</em></p>\n
"""
]
3 => array:1 [
"text" => """
<h3><strong>Posture & Leadership du Product Owner</strong></h3>\n
<p>Développer son leadership et adopter la bonne posture de Product Owner : des outils et des techniques pour soi et pour l’équipe avec le renforcement d’un état d’esprit tourné vers l’amélioration continue de l’équipe, des techniques de communication impactante dans le respect de sa personnalité , des clés pour mettre en mouvement, responsabiliser et animer les équipes, et les bases du management 3.0 pour créer et entretenir un climat sain de dialogue, d’ouverture, d’engagement et de créativité.</p>\n
<p><em>Durée : Environ 1 semaine</em></p>\n
"""
]
4 => array:1 [
"text" => """
<h3><strong>Et bien plus encore</strong></h3>\n
<p><strong>Product Basics, Product Discovery, Product Growth, Product Delivery</strong> : notre équipe est là pour accompagner les candidats sur toutes les thématiques dont ils nécessitent et les intégrer à leur formation produit sur mesure.</p>\n
"""
]
]
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "large"
"padding_height_top" => "large"
"padding_height_bottom" => "small"
]
]
5 => array:3 [
"acf_fc_layout" => "call-to-action"
"content" => array:5 [
"icon" => 462
"text" => """
<h3>Vous souhaitez en savoir plus ?</h3>\n
<p>Tarification, modalités de formation, contenus spécifiques, … Notre équipe sera heureuse de répondre à toutes vos questions !</p>\n
"""
"link" => array:3 [
"title" => "Prendre contact avec l'équipe"
"url" => "mailto:agility-and-product-management@tasmane.com?subject=[Product%20Management%20Academy]"
"target" => ""
]
"block_overlay" => false
"display_leaves" => true
]
"block_options" => array:6 [
"show" => true
"id" => ""
"class" => ""
"wrapper" => "expend"
"padding_height_top" => "none"
"padding_height_bottom" => "none"
]
]
]
"row_options" => array:3 [
"show" => true
"id" => ""
"class" => ""
]
]
]
]
/home
/tasmanecru
/www
/wp-includes
/template-loader.php
}
break;
}
}
if ( ! $template ) {
$template = get_index_template();
}
/**
* Filters the path of the current template before including it.
*
* @since 3.0.0
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
}
return;
}
Arguments
"/home/tasmanecru/www/wp-content/themes/walt-wp-theme/template-flexible.php"
/home
/tasmanecru
/www
/wp-blog-header.php
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( ! isset( $wp_did_header ) ) {
$wp_did_header = true;
// Load the WordPress library.
require_once __DIR__ . '/wp-load.php';
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
Arguments
"/home/tasmanecru/www/wp-includes/template-loader.php"
/home
/tasmanecru
/www
/index.php
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
Arguments
"/home/tasmanecru/www/wp-blog-header.php"