Created
August 23, 2024 20:51
-
-
Save matdave/13661de7efd5994af49791828946a022 to your computer and use it in GitHub Desktop.
MODX 2.x to 3.x Resource Select
This file contains hidden or 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
# Run on 2.x MODX | |
SELECT | |
id, | |
type, | |
pagetitle, | |
longtitle, | |
description, | |
alias, | |
link_attributes, | |
published, | |
pub_date, | |
unpub_date, | |
parent, | |
isfolder, | |
introtext, | |
content, | |
richtext, | |
template, | |
menuindex, | |
searchable, | |
cacheable, | |
createdby, | |
createdon, | |
editedby, | |
editedon, | |
deleted, | |
deletedon, | |
deletedby, | |
publishedon, | |
publishedby, | |
menutitle, | |
donthit, | |
privateweb, | |
privatemgr, | |
content_dispo, | |
hidemenu, | |
'MODX\\Revolution\\modDocument' as class_key, | |
context_key, | |
content_type, | |
uri, | |
uri_override, | |
hide_children_in_tree, | |
show_in_tree, | |
properties, | |
alias_visible | |
FROM modx_site_content |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment