View Callbacks.pm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package MAUS::Callbacks; | |
use strict; | |
sub _data_api_pre_save_entry { | |
my ( $cb, $app, $obj, $original ) = @_; | |
my $entry = $app->param( 'entry' ); | |
$entry = MT::DataAPI::Format::JSON::unserialize( $entry ); | |
# if ( $entry->{ 'convert_breaks' } ) { | |
# $obj->convert_breaks( lc( $entry->{ 'convert_breaks' } ) ); | |
# } |
View config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
id: MAUS | |
name: MAUS | |
key: maus | |
description: <__trans phrase="Set text format to Markdown(Post by MAUS)."> | |
version: 0.1 | |
author_name: Alfasado Inc. | |
author_link: http://alfasado.net/ | |
l10n_class: MAUS::L10N | |
callbacks: | |
data_api_pre_save.entry: $maus::MAUS::Callbacks::_data_api_pre_save_entry |
View Callbacks.pm(Old)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package MAUS::Callbacks; | |
use strict; | |
sub _data_api_pre_save_entry { | |
my ( $cb, $app, $obj, $original ) = @_; | |
my $entry = $app->param( 'entry' ); | |
$entry = MT::DataAPI::Format::JSON::unserialize( $entry ); | |
if ( $entry->{ 'convert_breaks' } ) { | |
$obj->convert_breaks( lc( $entry->{ 'convert_breaks' } ) ); | |
} |
View powercms-plugin-import-check
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ImportCheck | |
id: ImportCheck | |
version: 0.1 | |
config_settings: | |
EntryPathCustomFieldBasename: | |
default: orig_entry_path | |
PagePathCustomFieldBasename: | |
default: orig_page_path | |
callbacks: | |
cms_post_import.entry: > |
View mt-plugin-get-list-files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GetListFiles | |
id: GetListFiles | |
version: 0.1 | |
applications: | |
cms: | |
methods: | |
get_listfiles: > | |
sub { | |
my $app = shift; | |
if (! $app->user->is_superuser ) { |
View mt-plugin-garbage-cleaner
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Garbage Cleaner | |
id: GarbageCleaner | |
version: 0.1 | |
callbacks: | |
MT::FileInfo::post_remove: > | |
sub { | |
my ( $cb, $obj ) = @_; | |
my $path = $obj->file_path; | |
require MT::FileMgr; | |
my $fmgr = MT::FileMgr->new( 'Local' ) |
View mt-plugin-get-epoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tags: | |
function: | |
GetEpoc: sub{return time} |
View mt-plugin-rewritearchiver.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class RewriteArchiver extends MTPlugin { | |
var $registry = array( | |
'config_settings' => array( | |
'RewriteArchiverRewriteTo' => array( 'default' => '/archiver.html' ), | |
), | |
'callbacks' => array( | |
'post_init' => 'rewrite_archiver', | |
), | |
); |
View mt-plugin-http-https-transfer.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class HttpHttpsTransfer extends MTPlugin { | |
var $registry = array( | |
'config_settings' => array( | |
'HttpHttpsTransferPathBegin' => array( 'default' => '/entry_form/' ), | |
), | |
'callbacks' => array( | |
'post_init' => 'post_init', | |
), | |
); |
View mt-tools-template.pl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
package MT::Tool::Foo; | |
use strict; | |
use warnings; | |
use File::Spec; | |
use FindBin; | |
use lib map File::Spec->catdir( $FindBin::Bin, File::Spec->updir, $_ ), qw/lib extlib/; | |
use base qw( MT::Tool ); | |
sub usage { '--debug 1' } |
OlderNewer