当前位置: 首页>>代码示例>>PHP>>正文


PHP td_block_layout::open_row方法代码示例

本文整理汇总了PHP中td_block_layout::open_row方法的典型用法代码示例。如果您正苦于以下问题:PHP td_block_layout::open_row方法的具体用法?PHP td_block_layout::open_row怎么用?PHP td_block_layout::open_row使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在td_block_layout的用法示例。


在下文中一共展示了td_block_layout::open_row方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: inner

 function inner($posts, $td_column_number = '', $atts)
 {
     $buffy = '';
     $navigation = '';
     if (!empty($atts['navigation'])) {
         $navigation = $atts['navigation'];
     }
     $td_block_layout = new td_block_layout();
     if (empty($td_column_number)) {
         $td_column_number = td_util::vc_get_column_number();
         // get the column width of the block from the page builder API
     }
     $td_post_count = 0;
     // the number of posts rendered
     $td_current_column = 1;
     //the current columng
     if (!empty($posts)) {
         $td_module_trending_now = new td_module_trending_now();
         switch ($td_column_number) {
             case '1':
                 //one column layout
                 $buffy .= $td_block_layout->open_row();
                 $buffy .= $td_module_trending_now->render(array($posts, $navigation));
                 if ($td_current_column == 1) {
                     $buffy .= $td_block_layout->close_row();
                 }
                 break;
             case '2':
                 //two column layout
                 $buffy .= $td_block_layout->open_row();
                 //$buffy .= $td_block_layout->open6();
                 $buffy .= $td_module_trending_now->render(array($posts, $navigation));
                 //$buffy .= $td_block_layout->close6();
                 if ($td_current_column == 2) {
                     $buffy .= $td_block_layout->close_row();
                 }
                 break;
             case '3':
                 //three column layout
                 $buffy .= $td_block_layout->open_row();
                 //$buffy .= $td_block_layout->open4();
                 $buffy .= $td_module_trending_now->render(array($posts, $navigation));
                 //$buffy .= $td_block_layout->close4();
                 if ($td_current_column == 3) {
                     $buffy .= $td_block_layout->close_row();
                 }
                 break;
         }
         //current column
         if ($td_current_column == $td_column_number) {
             $td_current_column = 1;
         } else {
             $td_current_column++;
         }
         $td_post_count++;
     }
     $buffy .= $td_block_layout->close_all_tags();
     return $buffy;
 }
开发者ID:vikasjain1595,项目名称:wordpresstheme,代码行数:59,代码来源:td_block_trending_now.php

示例2: inner

 function inner($posts, $td_column_number = '')
 {
     $buffy = '';
     $td_block_layout = new td_block_layout();
     if (empty($td_column_number)) {
         $td_column_number = td_util::vc_get_column_number();
         // get the column width of the block from the page builder API
     }
     $td_post_count = 0;
     // the number of posts rendered
     $td_current_column = 1;
     //the current column
     if (!empty($posts)) {
         foreach ($posts as $post) {
             $td_module_9 = new td_module_9($post);
             switch ($td_column_number) {
                 case '1':
                     //one column layout
                     $buffy .= $td_block_layout->open12();
                     //added in 010 theme - span 12 doesn't use rows
                     $buffy .= $td_module_9->render($post);
                     $buffy .= $td_block_layout->close12();
                     break;
                 case '2':
                     //two column layout
                     $buffy .= $td_block_layout->open_row();
                     $buffy .= $td_block_layout->open6();
                     //added in 010 theme - span 12 doesn't use rows
                     $buffy .= $td_module_9->render($post);
                     $buffy .= $td_block_layout->close6();
                     if ($td_current_column == 2) {
                         $buffy .= $td_block_layout->close_row();
                     }
                     break;
                 case '3':
                     //three column layout
                     $buffy .= $td_block_layout->open_row();
                     $buffy .= $td_block_layout->open4();
                     $buffy .= $td_module_9->render($post);
                     $buffy .= $td_block_layout->close4();
                     if ($td_current_column == 3) {
                         $buffy .= $td_block_layout->close_row();
                     }
                     break;
             }
             //current column
             if ($td_current_column == $td_column_number) {
                 $td_current_column = 1;
             } else {
                 $td_current_column++;
             }
             $td_post_count++;
         }
     }
     $buffy .= $td_block_layout->close_all_tags();
     return $buffy;
 }
开发者ID:tuanlibra,项目名称:thptxuanang,代码行数:57,代码来源:td_block_10.php

示例3: inner

 function inner($posts, $td_column_number = '')
 {
     //global $post;
     $buffy = '';
     $td_block_layout = new td_block_layout();
     if (empty($td_column_number)) {
         $td_column_number = $td_block_layout->get_column_number();
         // get the column width of the block
     }
     $td_post_count = 0;
     // the number of posts rendered
     $td_current_column = 1;
     //the current column
     if (!empty($posts)) {
         foreach ($posts as $post) {
             $td_module_3 = new td_module_3($post);
             switch ($td_column_number) {
                 case '1':
                     //one column layout
                     $buffy .= $td_module_3->render($post);
                     break;
                 case '2':
                     //two column layout
                     $buffy .= $td_block_layout->open_row();
                     $buffy .= $td_block_layout->open6();
                     $buffy .= $td_module_3->render($post);
                     $buffy .= $td_block_layout->close6();
                     if ($td_current_column == 2) {
                         $buffy .= $td_block_layout->close_row();
                     }
                     break;
                 case '3':
                     //three column layout
                     $buffy .= $td_block_layout->open_row();
                     $buffy .= $td_block_layout->open4();
                     $buffy .= $td_module_3->render($post);
                     $buffy .= $td_block_layout->close4();
                     if ($td_current_column == 3) {
                         $buffy .= $td_block_layout->close_row();
                     }
                     break;
             }
             //current column
             if ($td_current_column == $td_column_number) {
                 $td_current_column = 1;
             } else {
                 $td_current_column++;
             }
             $td_post_count++;
         }
     }
     $buffy .= $td_block_layout->close_all_tags();
     return $buffy;
 }
开发者ID:Vatia13,项目名称:wordpress,代码行数:54,代码来源:td_block_4.php

示例4: inner

 function inner($posts, $td_column_number = '')
 {
     $buffy = '';
     $td_block_layout = new td_block_layout();
     $td_post_count = 0;
     // the number of posts rendered
     if (!empty($posts)) {
         foreach ($posts as $post) {
             $td_module_mx7 = new td_module_mx7($post);
             $td_module_6 = new td_module_6($post);
             switch ($td_column_number) {
                 case '1':
                     //one column layout
                     $buffy .= $td_block_layout->open12();
                     //added in 010 theme - span 12 doesn't use rows
                     $buffy .= $td_module_6->render($post);
                     $buffy .= $td_block_layout->close12();
                     break;
                 case '2':
                     //two column layout
                     $buffy .= $td_block_layout->open_row();
                     $buffy .= $td_block_layout->open4();
                     $buffy .= $td_module_mx7->render($post);
                     $buffy .= $td_block_layout->close4();
                     if ($td_post_count == 2) {
                         $buffy .= $td_block_layout->close_row();
                     }
                     break;
                 case '3':
                     //three column layout
                     $buffy .= $td_block_layout->open_row();
                     $buffy .= $td_block_layout->open4();
                     $buffy .= $td_module_mx7->render($post);
                     $buffy .= $td_block_layout->close4();
                     if ($td_post_count == 4) {
                         $buffy .= $td_block_layout->close_row();
                     }
                     break;
             }
             $td_post_count++;
             // close the row after 3(for 2 columns) or 5 posts(for 3 columns)
             if ($td_column_number == 2 and $td_post_count == 3 or $td_column_number == 3 and $td_post_count == 5) {
                 $td_post_count = 0;
             }
         }
     }
     $buffy .= $td_block_layout->close_all_tags();
     return $buffy;
 }
开发者ID:tuanlibra,项目名称:thptxuanang,代码行数:49,代码来源:td_block_16.php

示例5: inner

 function inner($posts, $td_column_number = '')
 {
     $td_block_layout = new td_block_layout();
     $td_block_layout->row_class = 'td-related-row';
     $td_block_layout->span4_class = 'td-related-span4';
     $buffy = '';
     $td_current_column = 1;
     //the current column
     if (!empty($posts)) {
         foreach ($posts as $td_post_count => $post) {
             $td_module_related_posts = new td_module_related_posts($post);
             switch ($td_column_number) {
                 case '3':
                     //the layout when we are on content + sidebar
                     $buffy .= $td_block_layout->open_row();
                     $buffy .= $td_block_layout->open4();
                     $buffy .= $td_module_related_posts->render();
                     $buffy .= $td_block_layout->close4();
                     if ($td_current_column == 3) {
                         $buffy .= $td_block_layout->close_row();
                     }
                     break;
                 case '5':
                     //the layout when we are on
                     $buffy .= $td_block_layout->open_row();
                     $buffy .= $td_block_layout->open4();
                     $buffy .= $td_module_related_posts->render();
                     $buffy .= $td_block_layout->close4();
                     if ($td_current_column == 5) {
                         $buffy .= $td_block_layout->close_row();
                     }
                     break;
             }
             //current column
             if ($td_current_column == $td_column_number) {
                 $td_current_column = 1;
             } else {
                 $td_current_column++;
             }
         }
         //end for each
     }
     $buffy .= $td_block_layout->close_all_tags();
     return $buffy;
 }
开发者ID:weerapat,项目名称:wp-daily,代码行数:45,代码来源:td_block_related_posts.php

示例6: inner

 function inner($posts, $td_column_number = '')
 {
     $buffy = '';
     $navigation = '';
     if (!empty($this->atts['navigation'])) {
         $navigation = $this->atts['navigation'];
     }
     $td_block_layout = new td_block_layout();
     if (!empty($posts)) {
         $buffy .= $td_block_layout->open_row();
         $trending_now_unique_id = td_global::td_generate_unique_id();
         //generate unique id for this object
         $buffy .= '<div class="td-trending-now-wrapper" id="' . $trending_now_unique_id . '" data-start="' . esc_attr($navigation) . '">';
         $buffy .= '<div class="td-trending-now-title">' . __td('Trending Now', TD_THEME_NAME) . '</div><div class="td-trending-now-display-area">';
         foreach ($posts as $post_count => $post) {
             $td_module_trending_now = new td_module_trending_now($post);
             $buffy .= $td_module_trending_now->render($post_count);
         }
         $buffy .= '</div>';
         // ZA Cutom
         // $buffy .= '<div class="td-next-prev-wrap">';
         //     $buffy .= '<a href="#"
         //                   class="td_ajax-prev-pagex td-trending-now-nav-left"
         //                   data-wrapper-id="' . $trending_now_unique_id . '"
         //                   data-moving="left"
         //                   data-control-start="' . $navigation . '"><i class="td-icon-menu-left"></i></a>';
         //     $buffy .= '<a href="#"
         //                   class="td_ajax-next-pagex td-trending-now-nav-right"
         //                   data-wrapper-id="' . $trending_now_unique_id . '"
         //                   data-moving="right"
         //                   data-control-start="' . $navigation . '"><i class="td-icon-menu-right"></i></a>';
         // $buffy .= '</div>';
         $buffy .= '</div>';
         $buffy .= $td_block_layout->close_row();
     }
     $buffy .= $td_block_layout->close_all_tags();
     return $buffy;
 }
开发者ID:weerapat,项目名称:wp-daily,代码行数:38,代码来源:td_block_trending_now.php

示例7: inner

 function inner($posts, $td_column_number = '')
 {
     $buffy = '';
     $td_block_layout = new td_block_layout();
     $td_post_count = 0;
     // the number of posts rendered
     $td_current_column = 1;
     //the current column
     if (!empty($posts)) {
         foreach ($posts as $post) {
             $td_module_mx1 = new td_module_mx1($post);
             $td_module_mx2 = new td_module_mx2($post);
             switch ($td_column_number) {
                 case '1':
                     //one column layout
                     if ($td_post_count == 0) {
                         //first post
                         $buffy .= $td_module_mx1->render();
                     } else {
                         $buffy .= $td_module_mx2->render();
                     }
                     break;
                 case '2':
                     //two column layout
                     $buffy .= $td_block_layout->open_row();
                     if ($td_post_count <= 1) {
                         // big posts
                         $buffy .= $td_block_layout->open6();
                         $buffy .= $td_module_mx1->render();
                         $buffy .= $td_block_layout->close6();
                     }
                     if ($td_post_count == 1) {
                         //close big posts
                         $buffy .= $td_block_layout->close_row();
                     }
                     if ($td_post_count > 1) {
                         //4th post (big posts are rendered)
                         $buffy .= $td_block_layout->open_row();
                         $buffy .= $td_block_layout->open6();
                         $buffy .= $td_module_mx2->render();
                         $buffy .= $td_block_layout->close6();
                         if ($td_current_column == 2) {
                             // column 2
                             $buffy .= $td_block_layout->close_row();
                         }
                     }
                     break;
                 case '3':
                     //three column layout
                     $buffy .= $td_block_layout->open_row();
                     if ($td_post_count <= 2) {
                         // big posts
                         $buffy .= $td_block_layout->open4();
                         $buffy .= $td_module_mx1->render();
                         $buffy .= $td_block_layout->close4();
                     }
                     if ($td_post_count == 2) {
                         //close big posts
                         $buffy .= $td_block_layout->close_row();
                     }
                     if ($td_post_count > 2) {
                         //4th post (big posts are rendered)
                         $buffy .= $td_block_layout->open_row();
                         $buffy .= $td_block_layout->open4();
                         $buffy .= $td_module_mx2->render();
                         $buffy .= $td_block_layout->close4();
                         if ($td_current_column == 3) {
                             // column 3
                             $buffy .= $td_block_layout->close_row();
                         }
                     }
                     break;
             }
             //current column
             if ($td_current_column == $td_column_number) {
                 $td_current_column = 1;
             } else {
                 $td_current_column++;
             }
             $td_post_count++;
         }
     }
     $buffy .= $td_block_layout->close_all_tags();
     return $buffy;
 }
开发者ID:weerapat,项目名称:wp-daily,代码行数:85,代码来源:td_block_19.php

示例8: inner

 function inner($posts, $td_column_number = '')
 {
     $buffy = '';
     $td_block_layout = new td_block_layout();
     if (empty($td_column_number)) {
         $td_column_number = td_util::vc_get_column_number();
         // get the column width of the block from the page builder API
     }
     $td_post_count = 0;
     // the number of posts rendered
     if (!empty($posts)) {
         foreach ($posts as $post) {
             $td_module_4 = new td_module_4($post);
             $td_module_6 = new td_module_6($post);
             switch ($td_column_number) {
                 case '1':
                     //one column layout
                     $buffy .= $td_block_layout->open12();
                     //added in 010 theme - span 12 doesn't use rows
                     if ($td_post_count == 0) {
                         //first post
                         $buffy .= $td_module_4->render();
                     } else {
                         $buffy .= $td_module_6->render();
                     }
                     $buffy .= $td_block_layout->close12();
                     break;
                 case '2':
                     //two column layout
                     $buffy .= $td_block_layout->open_row();
                     if ($td_post_count == 0) {
                         //first post
                         $buffy .= $td_block_layout->open6();
                         $buffy .= $td_module_4->render();
                         $buffy .= $td_block_layout->close6();
                     } else {
                         //the rest
                         $buffy .= $td_block_layout->open6();
                         $buffy .= $td_module_6->render();
                     }
                     break;
                 case '3':
                     //three column layout
                     $buffy .= $td_block_layout->open_row();
                     if ($td_post_count == 0) {
                         //first post
                         $buffy .= $td_block_layout->open4();
                         $buffy .= $td_module_4->render();
                         $buffy .= $td_block_layout->close4();
                     } else {
                         //2-3 cols
                         $buffy .= $td_block_layout->open4();
                         $buffy .= $td_module_6->render();
                         if ($td_post_count == 4) {
                             //make new column
                             $buffy .= $td_block_layout->close4();
                         }
                     }
                     break;
             }
             $td_post_count++;
         }
     }
     $buffy .= $td_block_layout->close_all_tags();
     return $buffy;
 }
开发者ID:luxifel,项目名称:Bionerd,代码行数:66,代码来源:td_block_1.php

示例9: inner

 function inner($posts, $td_column_number = '')
 {
     //global $post;
     $buffy = '';
     $td_block_layout = new td_block_layout();
     if (empty($td_column_number)) {
         $td_column_number = $td_block_layout->get_column_number();
         // get the column width of the block
     }
     $td_post_count = 0;
     // the number of posts rendered
     if (!empty($posts)) {
         foreach ($posts as $post) {
             $td_module_2 = new td_module_2($post);
             $td_module_3 = new td_module_3($post);
             switch ($td_column_number) {
                 case '1':
                     //one column layout
                     if ($td_post_count == 0) {
                         //first post
                         $buffy .= $td_module_2->render();
                     } else {
                         $buffy .= $td_module_3->render();
                     }
                     break;
                 case '2':
                     //two column layout
                     $buffy .= $td_block_layout->open_row();
                     if ($td_post_count == 0) {
                         //first post
                         $buffy .= $td_block_layout->open6();
                         $buffy .= $td_module_2->render();
                         $buffy .= $td_block_layout->close6();
                     } else {
                         //the rest
                         $buffy .= $td_block_layout->open6();
                         $buffy .= $td_module_3->render();
                     }
                     break;
                 case '3':
                     //three column layout
                     $buffy .= $td_block_layout->open_row();
                     if ($td_post_count == 0) {
                         //first post
                         $buffy .= $td_block_layout->open4();
                         $buffy .= $td_module_2->render();
                         $buffy .= $td_block_layout->close4();
                     } else {
                         //2-3 cols
                         $buffy .= $td_block_layout->open4();
                         $buffy .= $td_module_3->render();
                         if ($td_post_count == 4) {
                             //make new column
                             $buffy .= $td_block_layout->close4();
                         }
                     }
                     break;
             }
             $td_post_count++;
         }
     }
     $buffy .= $td_block_layout->close_all_tags();
     return $buffy;
 }
开发者ID:Vatia13,项目名称:tofido,代码行数:64,代码来源:td_block_1.php


注:本文中的td_block_layout::open_row方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。