Тема: Созданный plugin не отображается теги не опознаются в МТ
По руководству на http://www.movabletype.org/documentatio … odule.html сделал config.yaml файл:
name: Good for Nothing Plugin for Movable Type
id: Good4Nothing
author_link: http://www.yourwebsite.com/
author_name: Your Name Here
description: This plugin is an example plugin for Movable Type.
version: 1.0
config_settings:
MyImageURL:
default: http://www.movabletype.com/images/overview-1.jpg
tags:
function:
MyImageURL: $Good4Nothing::Good4Nothing::Plugin::tag
видно что зарегистрировал тег <mt:MyImageURL> , затем добавил плугин:
# Good for Nothing Plugin for Movable Type
# Author: Your Name Here, [email protected]
# Copyright (C) 2008 Your Name Here
# This file is licensed under the Artistic License, or the same
# terms as Perl itself.
package Good4Nothing::Plugin;
use strict;
sub tag {
my ($ctx) = @_;
my $cfg = $ctx->{config};
return $cfg->MyImageURL;
}
1; # Every module must return true
Так вот, ситуация складывается такая, что этот плугин видно только в основном блоге(где можно создать блог, пользователя), а в других блогах этого плугина нет, и еще одна засада: не опознается в МТ тег <mt:MyImageURL> . Может с правами доступа что, куда рыть, где засада? Спасибо.