- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
<?php function view_admin_article_categories_show_category(Model_Article_Category $category, $marker) { ?>
<tr>
<td><?=$category->id?></td>
<td><a href="<?=Route::url('admin_articles_category_edit', array('id' => $category->id))?>"><?=$marker?><?=$category->title?></a></td>
<td><?=$category->alias?></td>
<td><?=$category->seo_title?></td>
<td>
<a href="<?=Route::url('admin_articles_category_edit', array('id' => $category->id))?>"><span class="icon-edit"></span></a>
<a href="<?=Route::url('admin_article_remove', array('id' => $category->id))?>"><span class="icon-remove"></span></a>
</td>
</tr>
<?php } ?>
<?php
function view_admin_article_categories_show_child_categories(array $categories, array $current = null, $marker = '')
{
if($current === null)
{
$parents = queryToArray::from($categories)
->where(function($value){
return !is_numeric($value->parent_id);
})
->result();
view_admin_article_categories_show_child_categories($categories, $parents, '');
} else {
foreach($current as $parent)
{
view_admin_article_categories_show_category($parent, $marker);
$childs = queryToArray::from($categories)
->where(function($value)use($parent){
return $value->parent_id === $parent->id;
})
->result();
if($childs) {
view_admin_article_categories_show_child_categories($categories, $childs, $marker.'− ');
}
}
}
}?>
Проект на Kohana. Где-то во вьюхе.
tirinox 11.05.2014 12:52 # +2
- (void) stop: using: long: names: like: in: objective: c:
bormand 11.05.2014 13:24 # +1
eth0 11.05.2014 13:32 # +1
roman-kashitsyn 11.05.2014 20:39 # 0
я предпочитаю silversearch (ag), он в разы быстрее. Или просто git grep
guest 16.05.2015 09:31 # 0
bormand 16.05.2015 10:52 # 0
kegdan 16.05.2015 10:24 # 0
ты хотел сказать asuka?
bormand 16.05.2015 10:50 # 0
kegdan 16.05.2015 11:38 # 0
На ведроиде посмотрю
bormand 16.05.2015 13:16 # 0
Нафига? Лучше что-нибудь свежее запили, типа aes...
kegdan 16.05.2015 14:27 # 0
А на самом деле можно выепнуться - посоветуйте что из симметричного шифрования нынче в моде.